Skip to content

Commit 96025b8

Browse files
committed
Fixed uncaught import error
1 parent 4e19973 commit 96025b8

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

pytelemetrycli/cli.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
from pytelemetrycli.topics import Topics
88
from pytelemetrycli.runner import Runner
99
from serial.tools import list_ports
10-
from pytelemetrycli.ui import superplot
10+
from pytelemetrycli.ui.superplot import Superplot
1111

1212
def docopt_cmd(func):
1313
def fn(self, arg):
@@ -130,7 +130,7 @@ def do_plot(self, arg):
130130
if not self.topics.exists(arg['<topic>']):
131131
print("Topic ",arg['<topic>']," unknown.")
132132

133-
self.myplot = ui.Superplot(arg['<topic>'])
133+
self.myplot = Superplot(arg['<topic>'])
134134
q = self.myplot.start()
135135
self.topics.transfer(arg['<topic>'],q)
136136

0 commit comments

Comments
 (0)