diff --git a/github/__init__.py b/github/__init__.py index 4acf6f5..bb877ff 100644 --- a/github/__init__.py +++ b/github/__init__.py @@ -29,7 +29,7 @@ __version__ = "2.0.0a" __license__ = "MIT" __copyright__ = "Copyright (c) 2022-present VarMonke, sudosnok & contributors" +from . import utils from .errors import * from .internals import * from .objects import * -from . import utils diff --git a/github/types/security_and_analysis.py b/github/types/security_and_analysis.py index aaf2417..dc5201a 100644 --- a/github/types/security_and_analysis.py +++ b/github/types/security_and_analysis.py @@ -1,6 +1,6 @@ __all__ = ("SecurtiyAndAnalysis",) -from typing import Literal, TypedDict, TYPE_CHECKING +from typing import TYPE_CHECKING, Literal, TypedDict if TYPE_CHECKING: from typing_extensions import NotRequired