Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion trio/_unix_pipes.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,16 @@

import os
import errno
from typing_extensions import Final as FinalType
from typing import TYPE_CHECKING

from ._abc import Stream
from ._util import ConflictDetector, Final

import trio

if TYPE_CHECKING:
from typing_extensions import Final as FinalType

if os.name != "posix":
# We raise an error here rather than gating the import in lowlevel.py
# in order to keep jedi static analysis happy.
Expand Down