Skip to content

Commit a537123

Browse files
committed
Fix 3.10 issue
1 parent 3227e78 commit a537123

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/micromanager/commands/status.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from typing import Generator
1+
from typing import Iterator
22
from collections import Counter
33

44
from rich import print
@@ -56,7 +56,7 @@ def _whitespace(self, value: str) -> str:
5656
def _whitespace_chars(self, value: str) -> int:
5757
return self.ROW_LENGTHS[0] - len(value)
5858

59-
def _rows(self) -> Generator[tuple[str, str]]:
59+
def _rows(self) -> Iterator[tuple[str, str]]:
6060
for project in self._response:
6161
if len(project.containers) == 0:
6262
status = "STOPPED"

0 commit comments

Comments
 (0)