remove unneeded imports from iocontrol
authorLuke Kenneth Casson Leighton <lkcl@lkcl.net>
Mon, 29 Apr 2019 03:52:43 +0000 (04:52 +0100)
committerLuke Kenneth Casson Leighton <lkcl@lkcl.net>
Mon, 29 Apr 2019 03:52:43 +0000 (04:52 +0100)
src/add/iocontrol.py

index de1c938ea39efb5778c6cc69a32b0632be9ccc2c..524bccb50f6d1af8785af14913b53766edabdd04 100644 (file)
     slave) could be derived from ControlBase, for example.
 """
 
-from nmigen import Signal, Cat, Const, Mux, Module, Value, Elaboratable
+from nmigen import Signal, Cat, Const, Module, Value, Elaboratable
 from nmigen.cli import verilog, rtlil
 from nmigen.hdl.rec import Record
 
-from abc import ABCMeta, abstractmethod
 from collections.abc import Sequence, Iterable
 from collections import OrderedDict
-import inspect
 
 import nmoperator