From a0c9de32a927485063cf4bbaba8ace6870f599aa Mon Sep 17 00:00:00 2001 From: hauntsaninja <> Date: Fri, 23 Oct 2020 16:26:19 -0700 Subject: [PATCH] show flake8 a good time --- mypy/find_sources.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/mypy/find_sources.py b/mypy/find_sources.py index 179a680d2c744..86339774cac81 100644 --- a/mypy/find_sources.py +++ b/mypy/find_sources.py @@ -3,7 +3,7 @@ import functools import os.path -from typing import List, Sequence, Set, Tuple, Optional, Dict +from typing import List, Sequence, Set, Tuple, Optional from typing_extensions import Final from mypy.modulefinder import BuildSource, PYTHON_EXTENSIONS @@ -61,7 +61,9 @@ def keyfunc(name: str) -> Tuple[int, str]: class SourceFinder: - def __init__(self, fscache: FileSystemCache, explicit_package_roots: Optional[List[str]]) -> None: + def __init__( + self, fscache: FileSystemCache, explicit_package_roots: Optional[List[str]] + ) -> None: self.fscache = fscache self.explicit_package_roots = explicit_package_roots