You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
File "/usr/home/*****/LuxmedSniper/luxmed_sniper.py", line 271
logger.info(f'Notification was already sent for: {doctor_locator['name']}')
^^^^
SyntaxError: f-string: unmatched '['
running with python-3.11
Fix:
logger.info(f"Notification was already sent for: {doctor_locator['name']}")
The text was updated successfully, but these errors were encountered:
https://github.com/pawliczka/LuxmedSniper/blame/bc05bd93f47dfca4e8b2778f88d9c4d530b03a54/luxmed_sniper.py#L271
File "/usr/home/*****/LuxmedSniper/luxmed_sniper.py", line 271
logger.info(f'Notification was already sent for: {doctor_locator['name']}')
^^^^
SyntaxError: f-string: unmatched '['
running with python-3.11
Fix:
logger.info(f"Notification was already sent for: {doctor_locator['name']}")
The text was updated successfully, but these errors were encountered: