Skip to content

Commit 8aa00d7

Browse files
committed
LGTM review: remove extra import
1 parent 4a756ea commit 8aa00d7

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

tests/test_utils.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -168,8 +168,7 @@ def test_trim_string_for_EPICS(self):
168168
self.assertEqual(received, expected)
169169

170170
def test_show_ophyd_symbols(self):
171-
from ophyd.sim import hw
172-
sims = hw().__dict__
171+
sims = ophyd.sim.hw().__dict__
173172
wont_show = ("flyer1", "flyer2", "new_trivial_flyer", "trivial_flyer")
174173
num = len(sims) - len(wont_show)
175174
kk = sorted(sims.keys())

0 commit comments

Comments
 (0)