diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2016-04-25 00:12:32 +0300 |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2016-04-25 00:12:32 +0300 |
commit | ccd047ea4b92f09a84b67e69deb82ce42e510c4c (patch) | |
tree | 89663a3917f136919b9b491c22ee76c16afd0b83 /Lib/lib2to3/fixes/fix_dict.py | |
parent | a6f26c1d3495670c02c2ceb1e38ada0d468579f7 (diff) | |
download | cpython-ccd047ea4b92f09a84b67e69deb82ce42e510c4c.tar.gz cpython-ccd047ea4b92f09a84b67e69deb82ce42e510c4c.zip |
Removed unused imports.
Diffstat (limited to 'Lib/lib2to3/fixes/fix_dict.py')
-rw-r--r-- | Lib/lib2to3/fixes/fix_dict.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Lib/lib2to3/fixes/fix_dict.py b/Lib/lib2to3/fixes/fix_dict.py index 963f952e0b0..d3655c9f1b2 100644 --- a/Lib/lib2to3/fixes/fix_dict.py +++ b/Lib/lib2to3/fixes/fix_dict.py @@ -30,9 +30,8 @@ as an argument to a function that introspects the argument). # Local imports from .. import pytree from .. import patcomp -from ..pgen2 import token from .. import fixer_base -from ..fixer_util import Name, Call, LParen, RParen, ArgList, Dot +from ..fixer_util import Name, Call, Dot from .. import fixer_util |