Skip to content

Commit

Permalink
Merge pull request #887 from asottile/imports
Browse files Browse the repository at this point in the history
regenerate with latest reorder-python-imports
  • Loading branch information
asottile committed Sep 15, 2023
2 parents 973eed1 + acc5f9a commit 94f785e
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions pyupgrade/_plugins/imports.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
from pyupgrade._token_helpers import indented_amount

# GENERATED VIA generate-imports
# Using reorder-python-imports==3.10.0
# Using reorder-python-imports==3.11.0
REMOVALS = {
(3,): {
'__future__': {
Expand Down Expand Up @@ -183,7 +183,7 @@
'six.moves.BaseHTTPServer': 'http.server',
'six.moves.CGIHTTPServer': 'http.server',
'six.moves.SimpleHTTPServer': 'http.server',
'six.moves._dummy_thread': '_dummy_thread',
'six.moves._dummy_thread': '_thread',
'six.moves._thread': '_thread',
'six.moves.builtins': 'builtins',
'six.moves.cPickle': 'pickle',
Expand Down Expand Up @@ -228,6 +228,7 @@
'six.moves.urllib_error': 'urllib.error',
'six.moves.urllib_parse': 'urllib.parse',
'six.moves.urllib_robotparser': 'urllib.robotparser',
'six.moves.winreg': '_winreg',
'six.moves.xmlrpc_client': 'xmlrpc.client',
'six.moves.xmlrpc_server': 'xmlrpc.server',
'xml.etree.cElementTree': 'xml.etree.ElementTree',
Expand Down

0 comments on commit 94f785e

Please sign in to comment.