Skip to content

Commit

Permalink
Fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
A5rocks committed Nov 24, 2023
1 parent 4ed1cfa commit 1397edc
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/trio/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
"""
from __future__ import annotations

from typing import TYPE_CHECKING

# General layout:
#
# trio/_core/... is the self-contained core library. It does various
Expand Down Expand Up @@ -111,7 +113,6 @@

# Not imported by default, but mentioned here so static analysis tools like
# pylint will know that it exists.
from typing import TYPE_CHECKING
if TYPE_CHECKING:
from . import testing

Expand Down

0 comments on commit 1397edc

Please sign in to comment.