Skip to content

Commit 97887c1

Browse files
committed
isort remove_imports generator_stop
1 parent 88055b0 commit 97887c1

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

59 files changed

+12
-108
lines changed

docs/conf.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,10 @@
1111
# All configuration values have a default; values that are commented out
1212
# serve to show the default.
1313

14-
from __future__ import generator_stop
1514

1615
# -- General configuration ------------------------------------------------
17-
1816
# If your documentation needs a minimal Sphinx version, state it here.
1917
# needs_sphinx = '1.0'
20-
2118
# Add any Sphinx extension module names here, as strings. They can be
2219
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
2320
# ones.

modernize/__init__.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,5 @@
22
A hack on top of fissix (lib2to3 fork) for modernizing code for hybrid codebases.
33
"""
44

5-
from __future__ import generator_stop
65

76
__version__ = "0.9rc1.dev0"

modernize/__main__.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
from __future__ import generator_stop
2-
31
import sys
42

53
from .main import main

modernize/fixes/__init__.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
from __future__ import generator_stop
2-
31
fissix_fix_names = {
42
"fissix.fixes.fix_apply",
53
"fissix.fixes.fix_except",

modernize/fixes/fix_basestring.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
from __future__ import generator_stop
2-
31
from fissix import fixer_base, fixer_util
42

53

modernize/fixes/fix_classic_division.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
from __future__ import generator_stop
2-
31
from fissix import fixer_base, pytree
42
from fissix.pgen2 import token
53

modernize/fixes/fix_dict_six.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
Fixer for iterkeys() -> six.iterkeys(), and similarly for iteritems and itervalues.
33
"""
44

5-
from __future__ import generator_stop
65

76
# Local imports
87
from fissix import fixer_util, pytree

modernize/fixes/fix_file.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
from __future__ import generator_stop
2-
31
from fissix import fixer_base
42
from fissix.fixer_util import Name
53

modernize/fixes/fix_filter.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
# Copyright 2008 Armin Ronacher.
22
# Licensed to PSF under a Contributor Agreement.
33

4-
from __future__ import generator_stop
54

65
from fissix import fixer_util
76
from fissix.fixes import fix_filter

modernize/fixes/fix_import.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
from __future__ import generator_stop
2-
31
from fissix.fixer_util import syms
42
from fissix.fixes import fix_import
53

0 commit comments

Comments
 (0)