Skip to content

Commit

Permalink
Merge pull request #377 from mraniki/dev
Browse files Browse the repository at this point in the history
🎨
  • Loading branch information
mraniki committed Jun 18, 2024
2 parents 6de0755 + 40c8a6a commit 20f2721
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 20f2721

Please sign in to comment.