Skip to content

Commit

Permalink
try fix 3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
tlambert03 committed Nov 21, 2024
1 parent 82e3280 commit 7892c2f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/useq/runner/_runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import time
import warnings
from contextlib import contextmanager
from typing import TYPE_CHECKING
from typing import TYPE_CHECKING, Tuple
from unittest.mock import MagicMock

from useq._mda_sequence import MDASequence
Expand Down Expand Up @@ -32,7 +32,7 @@ def _exceptions_logged(logger: logging.Logger) -> Iterator[None]:


class GeneratorMDASequence(MDASequence):
axis_order: tuple[str, ...] = ()
axis_order: Tuple[str, ...] = ()

@property
def sizes(self) -> dict[str, int]: # pragma: no cover
Expand Down

0 comments on commit 7892c2f

Please sign in to comment.