From f18acfc0b0c483576059ee1fd7c414b6b4624224 Mon Sep 17 00:00:00 2001 From: Sean Anderson Date: Wed, 24 Aug 2022 12:27:40 -0400 Subject: [PATCH] tb: pcs: Import things explicitly Instead of using a wildcard, import used members explicitly. This is more tenable now that we don't have to import all the valids separately. Signed-off-by: Sean Anderson --- tb/pcs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tb/pcs.py b/tb/pcs.py index 2a7a846..fdca6ce 100644 --- a/tb/pcs.py +++ b/tb/pcs.py @@ -10,7 +10,7 @@ from cocotb.regression import TestFactory from cocotb.triggers import ClockCycles, Edge, RisingEdge, FallingEdge, Timer from cocotb.types import LogicArray -from .util import * +from .util import alist, classproperty, ReverseList, send_recovered_bits, timeout, with_valids class Code(enum.Enum): _0 = (0b11110, '0')