mirror of https://github.com/morpheus65535/bazarr
20 lines
499 B
Python
20 lines
499 B
Python
from typing import Any, Callable, TypeVar, Union
|
|
|
|
from attr import attrib, field
|
|
|
|
class UnsupportedSubclassing(Exception): ...
|
|
|
|
_T = TypeVar("_T")
|
|
|
|
def __dataclass_transform__(
|
|
*,
|
|
eq_default: bool = ...,
|
|
order_default: bool = ...,
|
|
kw_only_default: bool = ...,
|
|
field_descriptors: tuple[Union[type, Callable[..., Any]], ...] = ...,
|
|
) -> Callable[[_T], _T]: ...
|
|
@__dataclass_transform__(field_descriptors=(attrib, field))
|
|
def define(cls: type[_T]) -> type[_T]: ...
|
|
|
|
frozen = define
|