Skip to content

Commit b115f51

Browse files
committed
Fix lint
1 parent 31266e1 commit b115f51

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

mypy/test/testsamples.py

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,12 @@
55

66
from mypy.test.helpers import Suite, run_mypy
77

8+
89
class TypeshedSuite(Suite):
910
def check_stubs(self, version: str, name: Optional[str] = None) -> None:
1011
if name is None:
1112
name = version
12-
seen = {'__builtin__',}
13+
seen = {'__builtin__', }
1314
modules = ['__builtin__']
1415
for stub_type in ['stdlib', 'third_party']:
1516
stubdir = os.path.join('typeshed', stub_type, name)
@@ -26,14 +27,14 @@ def check_stubs(self, version: str, name: Optional[str] = None) -> None:
2627

2728
def test_2(self) -> None:
2829
self.check_stubs("2.7", name="2")
29-
30+
3031
def test_2and3_2(self) -> None:
3132
self.check_stubs("2.7", name="2and3")
32-
33+
3334
def test_2and3_3(self) -> None:
3435
sys_ver_str = '.'.join(map(str, sys.version_info[:2]))
3536
self.check_stubs(sys_ver_str, name="2and3")
36-
37+
3738
def test_3(self) -> None:
3839
self.check_stubs("3")
3940

@@ -45,7 +46,7 @@ def test_35(self) -> None:
4546

4647
def test_36(self) -> None:
4748
self.check_stubs("3.6")
48-
49+
4950
def test_37(self) -> None:
5051
self.check_stubs("3.7")
5152

0 commit comments

Comments
 (0)