mirror of
https://github.com/283375/arcaea-offline.git
synced 2025-07-02 04:36:26 +00:00
style: pre-commit
This commit is contained in:
@ -1,4 +1,4 @@
|
||||
from typing import TypeVar, Generic
|
||||
from typing import Generic, TypeVar
|
||||
|
||||
T = TypeVar("T")
|
||||
|
||||
|
@ -1,6 +1,8 @@
|
||||
from typing import Any, Protocol, ClassVar, Dict
|
||||
from typing import Any, ClassVar, Dict, Protocol
|
||||
|
||||
|
||||
class TDataclass(Protocol):
|
||||
__dataclass_fields__: ClassVar[Dict]
|
||||
|
||||
def __call__(self, *args: Any, **kwds: Any) -> Any:
|
||||
...
|
||||
|
Reference in New Issue
Block a user