Skip to content

Commit 8a237c9

Browse files
authored
Merge pull request #1034 from asottile/py314
regenerate symbols for --py314-plus
2 parents 70fcfb4 + 6f1d9c5 commit 8a237c9

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

pyupgrade/_plugins/imports.py

Lines changed: 4 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.15.0
24+
# Using reorder-python-imports==3.16.0
2525
REMOVALS = {
2626
(3,): {
2727
'__future__': {
@@ -242,6 +242,9 @@
242242
('typing_extensions', 'is_protocol'): 'typing',
243243
('typing_extensions', 'runtime_checkable'): 'typing',
244244
},
245+
(3, 14): {
246+
('typing_extensions', 'evaluate_forward_ref'): 'typing',
247+
},
245248
}
246249
REPLACE_MODS = {
247250
'six.moves.BaseHTTPServer': 'http.server',

0 commit comments

Comments
 (0)