We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3227e78 commit a537123Copy full SHA for a537123
1 file changed
src/micromanager/commands/status.py
@@ -1,4 +1,4 @@
1
-from typing import Generator
+from typing import Iterator
2
from collections import Counter
3
4
from rich import print
@@ -56,7 +56,7 @@ def _whitespace(self, value: str) -> str:
56
def _whitespace_chars(self, value: str) -> int:
57
return self.ROW_LENGTHS[0] - len(value)
58
59
- def _rows(self) -> Generator[tuple[str, str]]:
+ def _rows(self) -> Iterator[tuple[str, str]]:
60
for project in self._response:
61
if len(project.containers) == 0:
62
status = "STOPPED"
0 commit comments