From 3ec7918ba1abb1cb05a2706d065f4fe1d8c3e058 Mon Sep 17 00:00:00 2001 From: Dan Gohman Date: Tue, 20 Mar 2018 15:25:40 -0700 Subject: [PATCH] Tidy up a redundant import. --- lib/cretonne/meta/cdsl/isa.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/cretonne/meta/cdsl/isa.py b/lib/cretonne/meta/cdsl/isa.py index 064a353117..77b071636a 100644 --- a/lib/cretonne/meta/cdsl/isa.py +++ b/lib/cretonne/meta/cdsl/isa.py @@ -12,7 +12,7 @@ from .instructions import InstructionGroup try: from typing import Tuple, Union, Any, Iterable, Sequence, List, Set, Dict, TYPE_CHECKING # noqa if TYPE_CHECKING: - from .instructions import MaybeBoundInst, InstructionGroup, InstructionFormat # noqa + from .instructions import MaybeBoundInst, InstructionFormat # noqa from .predicates import PredNode, PredKey # noqa from .settings import SettingGroup # noqa from .registers import RegBank # noqa