From 8cbc6096dcd794a420ff77b5191f2a3f6afb3b2a Mon Sep 17 00:00:00 2001 From: RGBCube <78925721+RGBCube@users.noreply.github.com> Date: Sat, 25 Jun 2022 15:53:55 +0300 Subject: [PATCH] Fix typos and __all__s --- github/__init__.py | 2 +- github/types/security_and_analysis.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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