Skip to content

Commit b1f3615

Browse files
authored
Merge pull request #741 from asottile/py311-release
regenerate import symbols
2 parents c661da6 + e6669bd commit b1f3615

1 file changed

Lines changed: 20 additions & 1 deletion

File tree

pyupgrade/_plugins/imports.py

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
from pyupgrade._token_helpers import indented_amount
2222

2323
# GENERATED VIA generate-imports
24-
# Using reorder-python-imports==3.8.4
24+
# Using reorder-python-imports==3.9.0
2525
REMOVALS = {
2626
(3,): {
2727
'__future__': {
@@ -164,6 +164,25 @@
164164
('typing_extensions', 'get_origin'): 'typing',
165165
('typing_extensions', 'is_typeddict'): 'typing',
166166
},
167+
(3, 11): {
168+
('typing_extensions', 'Any'): 'typing',
169+
('typing_extensions', 'LiteralString'): 'typing',
170+
('typing_extensions', 'NamedTuple'): 'typing',
171+
('typing_extensions', 'Never'): 'typing',
172+
('typing_extensions', 'NotRequired'): 'typing',
173+
('typing_extensions', 'Required'): 'typing',
174+
('typing_extensions', 'Self'): 'typing',
175+
('typing_extensions', 'TypedDict'): 'typing',
176+
('typing_extensions', 'Unpack'): 'typing',
177+
('typing_extensions', 'assert_never'): 'typing',
178+
('typing_extensions', 'assert_type'): 'typing',
179+
('typing_extensions', 'clear_overloads'): 'typing',
180+
('typing_extensions', 'dataclass_transform'): 'typing',
181+
('typing_extensions', 'final'): 'typing',
182+
('typing_extensions', 'get_overloads'): 'typing',
183+
('typing_extensions', 'overload'): 'typing',
184+
('typing_extensions', 'reveal_type'): 'typing',
185+
},
167186
}
168187
REPLACE_MODS = {
169188
'six.moves.BaseHTTPServer': 'http.server',

0 commit comments

Comments
 (0)