We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a330f8b commit 9286230Copy full SHA for 9286230
src/scanspec/cli.py
@@ -40,8 +40,8 @@ def plot(spec: str):
40
from scanspec.plot import plot_spec
41
42
axis_names = {c: c for c in string.ascii_lowercase}
43
- eval_spec = eval(spec, locals=axis_names)
44
- plot_spec(eval_spec)
+ eval_spec = eval(spec, locals=axis_names) # type: ignore
+ plot_spec(eval_spec) # type: ignore
45
46
47
@cli.command()
0 commit comments