7 lines
137 B
Python
7 lines
137 B
Python
from typing_extensions import Protocol, runtime_checkable
|
|
|
|
|
|
@runtime_checkable
|
|
class Dataclass(Protocol):
|
|
__dataclass_fields__: dict
|