From c1d55358e034a96634345b9d0485e25f3fc1d3db Mon Sep 17 00:00:00 2001 From: koval Date: Thu, 7 Sep 2023 14:58:25 +0300 Subject: [PATCH] Fix IncEx typehint. --- huntflow_api_client/models/common.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/huntflow_api_client/models/common.py b/huntflow_api_client/models/common.py index ad5c50b..b1bbcde 100644 --- a/huntflow_api_client/models/common.py +++ b/huntflow_api_client/models/common.py @@ -12,15 +12,15 @@ VacancyState, ) -IncEx: typing_extensions.TypeAlias = "Set[int] | Set[str] | Dict[int, Any] | Dict[str, Any] | None" +_FieldSet: typing_extensions.TypeAlias = "Set[int] | Set[str] | Dict[int, Any] | Dict[str, Any]" class JsonRequestModel(BaseModel): def jsonable_dict( self, *, - include: IncEx = None, - exclude: IncEx = None, + include: Optional[_FieldSet] = None, + exclude: Optional[_FieldSet] = None, by_alias: bool = False, exclude_unset: bool = False, exclude_defaults: bool = False,