Skip to content

Commit

Permalink
🐛
Browse files Browse the repository at this point in the history
  • Loading branch information
mraniki committed Jul 6, 2024
1 parent dc38e54 commit 3eafa96
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions findmyorder/handler/__init__.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
"""
Supported Handlers
"""

# from .basic import BasicHandler
from .basic import BasicHandler
from .standard import StandardHandler

__all__ = ["StandardHandler"]
__all__ = ["StandardHandler", "BasicHandler"]
2 changes: 1 addition & 1 deletion findmyorder/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ def _create_client(self, **kwargs):
"""
library = kwargs.get("parser_library", "standard")
cls = self.client_classes.get(library.capitalize())
cls = self.client_classes.get((f"{library.capitalize()}Handler"))
return None if cls is None else cls(**kwargs)

def get_all_client_classes(self):
Expand Down

0 comments on commit 3eafa96

Please sign in to comment.