Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

⬆️ 🤖 - Repartee is something we think of twentyfour hours too late #381

Merged
merged 4 commits into from
Jul 8, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
♻️
mraniki committed Jul 7, 2024
commit 02b716f804d7b08f03d45f8962ba7882c9b9398d
4 changes: 2 additions & 2 deletions findmyorder/main.py
Original file line number Diff line number Diff line change
@@ -50,7 +50,7 @@ def __init__(
return
self.client_classes = self.get_all_client_classes()
self.clients = []
# Create a client for each client in settings
# Create a client for each client in settings.findmyorder
for name, client_config in settings.findmyorder.items():
if (
# Skip empty client configs
@@ -65,7 +65,7 @@ def __init__(
continue

# Create the client
logger.debug("Creating FMO parser {}", name)
logger.debug("Creating client {}", name)
client = self._create_client(**client_config, name=name)
# If the client has a valid client attribute, append it to the list
if client and getattr(client, "client", None):