Fix some remaining flake8 issues

This commit is contained in:
Dave Halter
2020-07-25 18:17:11 +02:00
parent 70ec8eecd1
commit 3c3c0b54dc
2 changed files with 1 additions and 2 deletions

View File

@@ -1,6 +1,5 @@
import hashlib
import os
from enum import Enum
from typing import Generic, TypeVar, Union, Dict, Optional, Any
from parso._compatibility import is_pypy

View File

@@ -23,7 +23,7 @@ within the statement. This lowers memory usage and cpu time and reduces the
complexity of the ``Parser`` (there's another parser sitting inside
``Statement``, which produces ``Array`` and ``Call``).
"""
from typing import Dict, Generic, TypeVar
from typing import Dict
from parso import tree
from parso.pgen2.generator import ReservedString