🚨 Fix: 错误的类型标注和 annotated 处理 (#2828)

This commit is contained in:
Ju4tCode
2024-07-20 14:03:32 +08:00
committed by GitHub
parent 015ddd9517
commit 2f60c5e9b4
3 changed files with 14 additions and 9 deletions

View File

@ -15,7 +15,7 @@ def combine_driver(driver: type[D]) -> type[D]: ...
@overload
def combine_driver(
driver: type[D], _m: type[Mixin], *mixins: type[Mixin]
driver: type[D], __m: type[Mixin], /, *mixins: type[Mixin]
) -> type["CombinedDriver"]: ...