Skip to content

Commit

Permalink
Fix star import
Browse files Browse the repository at this point in the history
  • Loading branch information
layday committed Mar 2, 2024
1 parent 1926fb2 commit 773b063
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/pyproject_hooks/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,6 @@
quiet_subprocess_runner,
)

if TYPE_CHECKING:
from ._impl import SubprocessRunner


__version__ = "1.0.0"
__all__ = [
"BackendUnavailable",
Expand All @@ -24,5 +20,9 @@
"default_subprocess_runner",
"quiet_subprocess_runner",
"BuildBackendHookCaller",
"SubprocessRunner",
]

if TYPE_CHECKING:
from ._impl import SubprocessRunner

__all__ += ["SubprocessRunner"]

0 comments on commit 773b063

Please sign in to comment.