Tidy up a redundant import.

This commit is contained in:
Dan Gohman
2018-03-20 15:25:40 -07:00
parent e787357520
commit 3ec7918ba1

View File

@@ -12,7 +12,7 @@ from .instructions import InstructionGroup
try: try:
from typing import Tuple, Union, Any, Iterable, Sequence, List, Set, Dict, TYPE_CHECKING # noqa from typing import Tuple, Union, Any, Iterable, Sequence, List, Set, Dict, TYPE_CHECKING # noqa
if TYPE_CHECKING: if TYPE_CHECKING:
from .instructions import MaybeBoundInst, InstructionGroup, InstructionFormat # noqa from .instructions import MaybeBoundInst, InstructionFormat # noqa
from .predicates import PredNode, PredKey # noqa from .predicates import PredNode, PredKey # noqa
from .settings import SettingGroup # noqa from .settings import SettingGroup # noqa
from .registers import RegBank # noqa from .registers import RegBank # noqa