Skip to content

Commit

Permalink
🔊
Browse files Browse the repository at this point in the history
  • Loading branch information
mraniki committed Jul 9, 2024
1 parent 51af595 commit b763294
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion findmyorder/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,14 +111,14 @@ def _create_client(self, **kwargs):
library is not supported.
"""
# library = kwargs.get("parser_library", "standard")
library = (
kwargs.get("library")
or kwargs.get("platform")
or kwargs.get("protocol")
or kwargs.get("parser_library")
or "standard"
)
logger.debug("Library: {}", library)
cls = self.client_classes.get((f"{library.capitalize()}Handler"))
return None if cls is None else cls(**kwargs)

Expand Down

0 comments on commit b763294

Please sign in to comment.