We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4e19973 commit 96025b8Copy full SHA for 96025b8
1 file changed
pytelemetrycli/cli.py
@@ -7,7 +7,7 @@
7
from pytelemetrycli.topics import Topics
8
from pytelemetrycli.runner import Runner
9
from serial.tools import list_ports
10
-from pytelemetrycli.ui import superplot
+from pytelemetrycli.ui.superplot import Superplot
11
12
def docopt_cmd(func):
13
def fn(self, arg):
@@ -130,7 +130,7 @@ def do_plot(self, arg):
130
if not self.topics.exists(arg['<topic>']):
131
print("Topic ",arg['<topic>']," unknown.")
132
133
- self.myplot = ui.Superplot(arg['<topic>'])
+ self.myplot = Superplot(arg['<topic>'])
134
q = self.myplot.start()
135
self.topics.transfer(arg['<topic>'],q)
136
0 commit comments