We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 88cc422 commit 2a1b0dbCopy full SHA for 2a1b0db
utils/appointments.py
@@ -168,7 +168,7 @@ def book_post_investigation_appointment(
168
current_time = f"{hour:02d}:{minute:02d}"
169
book_appointments_page.enter_appointment_start_time(current_time)
170
dialog_message = book_appointments_page.click_save_button_and_return_message()
171
- if not dialog_message or overlap_message not in dialog_message:
+ if dialog_message is None or overlap_message not in dialog_message:
172
# Success or no overlap dialog
173
break
174
# Increase time by 15 minutes
0 commit comments