Skip to content

Commit 210c54c

Browse files
authored
Merge branch 'main' into maint/update-repo
2 parents c7ae94d + d175718 commit 210c54c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/ansys/openapi/common/_base/_types.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -92,12 +92,12 @@ class ApiClientBase(metaclass=abc.ABCMeta):
9292

9393
@staticmethod
9494
@abc.abstractmethod
95-
def select_header_accept(accepts: Optional[List[str]]) -> Optional[str]:
95+
def select_header_accept(accepts: Optional[List[str]]) -> Optional[str]: ...
9696
"""Provide method signature for determining header priority."""
9797

9898
@staticmethod
9999
@abc.abstractmethod
100-
def select_header_content_type(content_types: Optional[List[str]]) -> str:
100+
def select_header_content_type(content_types: Optional[List[str]]) -> str: ...
101101
"""Provide method signature for determining header priority."""
102102

103103
@abc.abstractmethod
@@ -117,5 +117,5 @@ def call_api(
117117
_preload_content: bool = True,
118118
_request_timeout: Union[float, Tuple[float, float], None] = None,
119119
response_type_map: Optional[Dict[int, Union[str, None]]] = None,
120-
) -> Union[requests.Response, DeserializedType, None]:
120+
) -> Union[requests.Response, DeserializedType, None]: ...
121121
"""Provide method signature for calling the API."""

0 commit comments

Comments
 (0)