Skip to content

Commit

Permalink
[python] fix typo
Browse files Browse the repository at this point in the history
Signed-off-by: ふぁ <[email protected]>
  • Loading branch information
fa0311 committed Oct 12, 2023
1 parent 82a96f0 commit a40863f
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ class ApiClient:

if response_type == "bytearray":
return_data = response_data.data
elif response_type is None
elif response_type is None:
return_data = None
elif response_type == "file":
return_data = self.__deserialize_file(response_data)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ def __call_api(

if response_type == "bytearray":
return_data = response_data.data
elif response_type is None
elif response_type is None:
return_data = None
elif response_type == "file":
return_data = self.__deserialize_file(response_data)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ def __call_api(

if response_type == "bytearray":
return_data = response_data.data
elif response_type is None
elif response_type is None:
return_data = None
elif response_type == "file":
return_data = self.__deserialize_file(response_data)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ async def __call_api(

if response_type == "bytearray":
return_data = response_data.data
elif response_type is None
elif response_type is None:
return_data = None
elif response_type == "file":
return_data = self.__deserialize_file(response_data)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ def __call_api(

if response_type == "bytearray":
return_data = response_data.data
elif response_type is None
elif response_type is None:
return_data = None
elif response_type == "file":
return_data = self.__deserialize_file(response_data)
Expand Down

0 comments on commit a40863f

Please sign in to comment.