generated from yanyongyu/python-poetry-template
-
-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🐛 Fix: missing ghes lazy loading (#108)
- Loading branch information
Showing
4 changed files
with
24 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
from githubkit.versions.latest.models import ( # noqa: F401 | ||
SimpleUser as SimpleUserLatest, | ||
) | ||
from githubkit.versions.v2022_11_28.models import ( # noqa: F401 | ||
SimpleUser as SimpleUserV2022_11_28, | ||
) | ||
from githubkit.versions.ghec_v2022_11_28.models import ( # noqa: F401 | ||
SimpleUser as SimpleUserGhecV2022_11_28, | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
from githubkit.versions.latest.types import ( # noqa: F401 | ||
SimpleUserType as SimpleUserLatestType, | ||
) | ||
from githubkit.versions.v2022_11_28.types import ( # noqa: F401 | ||
SimpleUserType as SimpleUserV2022_11_28Type, | ||
) | ||
from githubkit.versions.ghec_v2022_11_28.types import ( # noqa: F401 | ||
SimpleUserType as SimpleUserGhecV2022_11_28Type, | ||
) |