Skip to content

Commit

Permalink
Merge pull request #42 from bigbookpl/master
Browse files Browse the repository at this point in the history
Fix error related case if there is not found appointment for current …
  • Loading branch information
pawliczka authored Dec 14, 2024
2 parents 01f90ba + 261ae22 commit 68963ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion luxmed_sniper.py
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ def check(self) -> None:
appointments = self._get_appointments_new_portal(doctor_locator)
if not appointments:
logger.info(f"No appointments found for: {doctor_locator['name']}")
return
continue
for appointment in appointments:
logger.info(
"Appointment found for: {app_name}! {AppointmentDate} at {ClinicPublicName} - {DoctorName}".format(
Expand Down

0 comments on commit 68963ae

Please sign in to comment.