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 eba7f6b commit 01e5186Copy full SHA for 01e5186
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 dialog_message is None or overlap_message not in (dialog_message or ""):
+ 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