diff --git a/third-party-stubs/mashumaro/core/meta/helpers.pyi b/third-party-stubs/mashumaro/core/meta/helpers.pyi index 8cbfc63..03a82a7 100644 --- a/third-party-stubs/mashumaro/core/meta/helpers.pyi +++ b/third-party-stubs/mashumaro/core/meta/helpers.pyi @@ -27,12 +27,15 @@ def is_typed_dict(typ: Type[Any]) -> bool: ... def is_named_tuple(typ: Type[Any]) -> bool: ... def is_new_type(typ: Type[Any]) -> bool: ... def is_union(typ: Type[Any]) -> bool: ... -def is_optional(typ: Type[Any], resolved_type_params: Optional[Dict[Type[Any], Type[Any]]] = ...) -> bool: ... +def is_optional( + typ: Type[Any], resolved_type_params: Optional[Dict[Type[Any], Type[Any]]] = ... +) -> bool: ... def is_annotated(typ: Type[Any]) -> bool: ... def get_type_annotations(typ: Type[Any]) -> Sequence[Any]: ... def is_literal(typ: Type[Any]) -> bool: ... def not_none_type_arg( - type_args: Tuple[Type[Any], ...], resolved_type_params: Optional[Dict[Type[Any], Type[Any]]] = ... + type_args: Tuple[Type[Any], ...], + resolved_type_params: Optional[Dict[Type[Any], Type[Any]]] = ..., ) -> Optional[Type[Any]]: ... def is_type_var(typ: Type[Any]) -> bool: ... def is_type_var_any(typ: Type[Any]) -> bool: ... @@ -47,7 +50,9 @@ def collect_type_params(typ: Type[Any]) -> Sequence[Type[Any]]: ... def resolve_type_params( typ: Type[Any], type_args: Sequence[Type[Any]] = ..., include_bases: bool = ... ) -> Dict[Type[Any], Dict[Type[Any], Type[Any]]]: ... -def substitute_type_params(typ: Type[Any], substitutions: Dict[Type[Any], Type[Any]]) -> Type[Any]: ... +def substitute_type_params( + typ: Type[Any], substitutions: Dict[Type[Any], Type[Any]] +) -> Type[Any]: ... def get_name_error_name(e: NameError) -> str: ... def is_dialect_subclass(typ: Type[Any]) -> bool: ... def is_self(typ: Type[Any]) -> bool: ... @@ -58,9 +63,7 @@ def get_function_arg_annotation( arg_name: Optional[str] = ..., arg_pos: Optional[int] = ..., ) -> Type[Any]: ... -def get_function_return_annotation( - function: Callable[[Any], Any] -) -> Type[Any]: ... +def get_function_return_annotation(function: Callable[[Any], Any]) -> Type[Any]: ... def is_unpack(typ: Type[Any]) -> bool: ... def is_type_var_tuple(typ: Type[Any]) -> bool: ... def hash_type_args(type_args: Iterable[Type[Any]]) -> str: ...