Skip to content

Commit fe1e47a

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

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
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

0 commit comments

Comments
 (0)