File tree Expand file tree Collapse file tree 4 files changed +24
-11
lines changed
Expand file tree Collapse file tree 4 files changed +24
-11
lines changed Original file line number Diff line number Diff line change @@ -21,12 +21,6 @@ repos:
2121 - id : ruff-format
2222 stages : [commit]
2323
24- - repo : https://github.com/pre-commit/mirrors-prettier
25- rev : v4.0.0-alpha.8
26- hooks :
27- - id : prettier
28- stages : [commit]
29-
3024 - repo : https://github.com/nonebot/nonemoji
3125 rev : v0.1.4
3226 hooks :
Original file line number Diff line number Diff line change 99
1010LAZY_MODULES = (
1111 r"^githubkit\.rest$" ,
12- r"^githubkit\.versions\.v[^.]+\.models$" ,
13- r"^githubkit\.versions\.v[^.]+\.webhooks$" ,
14- r"^githubkit\.versions\.latest\.models$" ,
15- r"^githubkit\.versions\.latest\.types$" ,
16- r"^githubkit\.versions\.latest\.webhooks$" ,
12+ r"^githubkit\.versions\.[^.]+\.models$" ,
13+ r"^githubkit\.versions\.[^.]+\.types$" ,
14+ r"^githubkit\.versions\.[^.]+\.webhooks$" ,
15+ # r"^githubkit\.versions\.latest\.models$",
16+ # r"^githubkit\.versions\.latest\.types$",
17+ # r"^githubkit\.versions\.latest\.webhooks$",
1718)
1819
1920
Original file line number Diff line number Diff line change 1+ from githubkit .versions .latest .models import ( # noqa: F401
2+ SimpleUser as SimpleUserLatest ,
3+ )
4+ from githubkit .versions .v2022_11_28 .models import ( # noqa: F401
5+ SimpleUser as SimpleUserV2022_11_28 ,
6+ )
7+ from githubkit .versions .ghec_v2022_11_28 .models import ( # noqa: F401
8+ SimpleUser as SimpleUserGhecV2022_11_28 ,
9+ )
Original file line number Diff line number Diff line change 1+ from githubkit .versions .latest .types import ( # noqa: F401
2+ SimpleUserType as SimpleUserLatestType ,
3+ )
4+ from githubkit .versions .v2022_11_28 .types import ( # noqa: F401
5+ SimpleUserType as SimpleUserV2022_11_28Type ,
6+ )
7+ from githubkit .versions .ghec_v2022_11_28 .types import ( # noqa: F401
8+ SimpleUserType as SimpleUserGhecV2022_11_28Type ,
9+ )
You can’t perform that action at this time.
0 commit comments