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