Skip to content

Commit

Permalink
🎨
Browse files Browse the repository at this point in the history
  • Loading branch information
mraniki committed Jun 18, 2024
1 parent 6de0755 commit 40c8a6a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion findmyorder/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,9 @@ async def search(self, my_string: str) -> bool:
"""
if my_string:
string_check = my_string.split()[0].lower()
logger.debug("Searching order identifier in {}", string_check)
# logger.debug("Searching order identifier in {}", string_check)
if string_check in settings.action_identifier.lower():
logger.debug("Order identifier found in {}", string_check)
return True
return False

Expand Down

0 comments on commit 40c8a6a

Please sign in to comment.