Skip to content
Snippets Groups Projects
Verified Commit 3380242f authored by Tobias Hangleiter's avatar Tobias Hangleiter
Browse files

clarify condition

parent a82bc092
No related branches found
No related tags found
1 merge request!60Improve responsiveness during acquisition
...@@ -154,7 +154,7 @@ class PlotManager: ...@@ -154,7 +154,7 @@ class PlotManager:
@property @property
def shown(self) -> Tuple[Tuple[int, str], ...]: def shown(self) -> Tuple[Tuple[int, str], ...]:
return tuple(key for key, val in self.lines.items() return tuple(key for key, val in self.lines.items()
if not val['main']['processed']['hidden']) if val['main']['processed']['hidden'] is False)
@property @property
def lines_to_draw(self) -> Tuple[str, ...]: def lines_to_draw(self) -> Tuple[str, ...]:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment