Skip to content

Commit d536e30

Browse files
author
hauntsaninja
committed
show flake8 a good time
1 parent 71271d5 commit d536e30

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

mypy/find_sources.py

+4-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import functools
44
import os.path
55

6-
from typing import List, Sequence, Set, Tuple, Optional, Dict
6+
from typing import List, Sequence, Set, Tuple, Optional
77
from typing_extensions import Final
88

99
from mypy.modulefinder import BuildSource, PYTHON_EXTENSIONS
@@ -61,7 +61,9 @@ def keyfunc(name: str) -> Tuple[int, str]:
6161

6262

6363
class SourceFinder:
64-
def __init__(self, fscache: FileSystemCache, explicit_package_roots: Optional[List[str]]) -> None:
64+
def __init__(
65+
self, fscache: FileSystemCache, explicit_package_roots: Optional[List[str]]
66+
) -> None:
6567
self.fscache = fscache
6668
self.explicit_package_roots = explicit_package_roots
6769

mypy/fscache.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030

3131
import os
3232
import stat
33-
from typing import Dict, List, Set
33+
from typing import Dict, List
3434
from mypy.util import hash_digest
3535

3636

0 commit comments

Comments
 (0)