From: Staf Verhaegen Date: Mon, 26 Aug 2019 19:02:39 +0000 (+0200) Subject: clean up unused python import statements X-Git-Tag: 24jan2021ls180~56 X-Git-Url: https://git.libre-soc.org/?p=c4m-jtag.git;a=commitdiff_plain;h=eb7100a9a5c02c468dcffc91b98918757084fc59;ds=inline clean up unused python import statements --- diff --git a/sim/cocotb/c4m_jtag.py b/sim/cocotb/c4m_jtag.py index bdac25c..fe014f3 100644 --- a/sim/cocotb/c4m_jtag.py +++ b/sim/cocotb/c4m_jtag.py @@ -1,6 +1,5 @@ import cocotb from cocotb.triggers import Timer -from cocotb.utils import get_sim_steps from cocotb.binary import BinaryValue class JTAGException(Exception): diff --git a/sim/cocotb/controller/test.py b/sim/cocotb/controller/test.py index c29d00e..9d66ea8 100644 --- a/sim/cocotb/controller/test.py +++ b/sim/cocotb/controller/test.py @@ -1,5 +1,4 @@ import cocotb -from cocotb.triggers import Timer from cocotb.utils import get_sim_steps from cocotb.binary import BinaryValue diff --git a/sim/cocotb/dual_parallel/test.py b/sim/cocotb/dual_parallel/test.py index 51f868d..47cf306 100644 --- a/sim/cocotb/dual_parallel/test.py +++ b/sim/cocotb/dual_parallel/test.py @@ -1,7 +1,5 @@ import cocotb -from cocotb.triggers import Timer from cocotb.utils import get_sim_steps -from cocotb.binary import BinaryValue from c4m_jtag import JTAG_Master