Skip to content

Commit

Permalink
nexus3
Browse files Browse the repository at this point in the history
  • Loading branch information
garland committed Aug 15, 2024
1 parent 66e774b commit dd2e3b7
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -165,9 +165,11 @@ def _get_schedule(self, location_id: int) -> None:

## GarDebug
foo = datetime.strptime(appointment["startTimestamp"], "%Y-%m-%dT%H:%M").isoformat()
print(f"GarDebug: the appointment datetime stamp foo: {foo}")
date_string1 = datetime.strftime(appointment["startTimestamp"], '%a, %B %d, %Y')
print(f"GarDebug: the appointment datetime stamp date_string1: {date_string1}")
date_string2 = datetime.strftime(appointment.appointment_date, '%a, %B %d, %Y')
print(f"GarDebug: the appointment datetime stamp: {foo} | {date_string1} | {date_string2}")
print(f"GarDebug: the appointment datetime stamp date_string2: {date_string2}")
sys.exit()

all_active_appointments.append(datetime.strptime(appointment["startTimestamp"], "%Y-%m-%dT%H:%M").isoformat())
Expand Down

0 comments on commit dd2e3b7

Please sign in to comment.