obsws-cli/obsws_cli/protocols.py
2025-04-19 20:15:26 +01:00

11 lines
251 B
Python

"""module defining protocols for type hinting."""
from dataclasses import dataclass
from typing import Protocol, runtime_checkable
@runtime_checkable
@dataclass
class DataclassProtocol(Protocol):
"""A protocol for dataclass-like structures."""