diff options
Diffstat (limited to 'Lib/lib2to3/fixes/fix_reduce.py')
-rw-r--r-- | Lib/lib2to3/fixes/fix_reduce.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/Lib/lib2to3/fixes/fix_reduce.py b/Lib/lib2to3/fixes/fix_reduce.py index 89fa2b431e..c54c5c1355 100644 --- a/Lib/lib2to3/fixes/fix_reduce.py +++ b/Lib/lib2to3/fixes/fix_reduce.py @@ -7,9 +7,8 @@ Makes sure reduce() is imported from the functools module if reduce is used in that module. """ -from .. import pytree -from .. import fixer_base -from ..fixer_util import Name, Attr, touch_import +from lib2to3 import fixer_base +from lib2to3.fixer_util import touch_import |