Skip to content

Commit d8d28ca

Browse files
committed
Stupid flake8 warnings
1 parent a967567 commit d8d28ca

File tree

1 file changed

+20
-20
lines changed

1 file changed

+20
-20
lines changed

mypy/syntax/dialect.py

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@
1212

1313

1414
from typing import (
15-
List,
16-
Sequence,
17-
Set,
18-
Tuple,
15+
List,
16+
Sequence,
17+
Set,
18+
Tuple,
1919
)
2020

2121
import os
@@ -28,22 +28,22 @@
2828
# Also we can use other ones.
2929

3030
available_futures = {
31-
# mypy-specific features
32-
'mypy-codec': '0.0',
33-
# platform.python_implementation()
34-
'variant-CPython': '0.0',
35-
'variant-PyPy': '0.0',
36-
'variant-Jython': '0.0',
37-
'variant-IronPython': '0.0',
38-
# real ones
39-
'nested_scopes': '2.1',
40-
'generators': '2.2',
41-
'division': '2.2',
42-
'absolute_import': '2.5',
43-
'with_statement': '2.5',
44-
'print_function': '2.6',
45-
'unicode_literals': '2.6',
46-
'barry_as_FLUFL': '3.1',
31+
# mypy-specific features
32+
'mypy-codec': '0.0',
33+
# platform.python_implementation()
34+
'variant-CPython': '0.0',
35+
'variant-PyPy': '0.0',
36+
'variant-Jython': '0.0',
37+
'variant-IronPython': '0.0',
38+
# real ones
39+
'nested_scopes': '2.1',
40+
'generators': '2.2',
41+
'division': '2.2',
42+
'absolute_import': '2.5',
43+
'with_statement': '2.5',
44+
'print_function': '2.6',
45+
'unicode_literals': '2.6',
46+
'barry_as_FLUFL': '3.1',
4747
}
4848

4949

0 commit comments

Comments
 (0)