Skip to content

Commit

Permalink
test: move the Self import into the TYPE_CHECKING block
Browse files Browse the repository at this point in the history
  • Loading branch information
ppentchev authored and tony committed Feb 9, 2025
1 parent 6c475b2 commit 634bf79
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/libtmux/test.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,6 @@
import time
import typing as t

from typing_extensions import Self

from .exc import WaitTimeout

logger = logging.getLogger(__name__)
Expand All @@ -20,6 +18,8 @@
import types
from collections.abc import Callable, Generator

from typing_extensions import Self

from libtmux.server import Server
from libtmux.session import Session
from libtmux.window import Window
Expand Down

0 comments on commit 634bf79

Please sign in to comment.