Skip to content

Commit

Permalink
Remove TYPE_CHECKING check
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonxslays committed Feb 25, 2024
1 parent c349829 commit 9a0fd8b
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions piston_rspy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@

from __future__ import annotations

from typing import TYPE_CHECKING

__all__: list[str] = [
"Runtime",
"File",
Expand All @@ -16,5 +14,5 @@
__pdoc__: dict[str, bool] = {}
__pdoc__["piston_rspy.piston_rspy"] = False

if TYPE_CHECKING:
from .piston_rspy import *

from .piston_rspy import *

0 comments on commit 9a0fd8b

Please sign in to comment.