Skip to content

Commit

Permalink
show flake8 a good time
Browse files Browse the repository at this point in the history
  • Loading branch information
hauntsaninja committed Oct 23, 2020
1 parent 71271d5 commit fe1e47a
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions mypy/find_sources.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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

Expand Down

0 comments on commit fe1e47a

Please sign in to comment.