Skip to content

Commit

Permalink
Fix package name - swagger_client to heappeac_v4
Browse files Browse the repository at this point in the history
  • Loading branch information
Martin Golasowski committed Jan 17, 2024
1 parent 9ff0951 commit 219cded
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion heappeac_v4/api_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ def __deserialize(self, data, klass):
if klass in self.NATIVE_TYPES_MAPPING:
klass = self.NATIVE_TYPES_MAPPING[klass]
else:
klass = getattr(swagger_client.models, klass)
klass = getattr(heappeac_v4.models, klass)

if klass in self.PRIMITIVE_TYPES:
return self.__deserialize_primitive(data, klass)
Expand Down
2 changes: 1 addition & 1 deletion heappeac_v4/configuration.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ def __init__(self):
self.password = ""
# Logging Settings
self.logger = {}
self.logger["package_logger"] = logging.getLogger("swagger_client")
self.logger["package_logger"] = logging.getLogger("heappeac_v4")
self.logger["urllib3_logger"] = logging.getLogger("urllib3")
# Log format
self.logger_format = '%(asctime)s %(levelname)s %(message)s'
Expand Down

0 comments on commit 219cded

Please sign in to comment.