1
Fork 0
mirror of https://github.com/RGBCube/GitHubWrapper synced 2025-05-31 04:58:12 +00:00

Fix typos and __all__s

This commit is contained in:
RGBCube 2022-06-25 15:53:55 +03:00
parent 8f11987586
commit 768b81683c
4 changed files with 7 additions and 6 deletions

View file

@ -1,9 +1,10 @@
from typing import Literal, TypedDict
from typing_extensions import NotRequired
__all__ = ("SecurtiyAndAnalysis",)
from typing import Literal, TypedDict, TYPE_CHECKING
if TYPE_CHECKING:
from typing_extensions import NotRequired
class AdvancedSecurity(TypedDict):
status: Literal["enabled", "disabled"]