File tree 1 file changed +3
-3
lines changed
custom_components/managemyhealth
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -88,7 +88,7 @@ async def get_appointments(self) -> any:
88
88
89
89
if appointments :
90
90
_LOGGER .debug ('Fetched current appointments' )
91
-
91
+
92
92
# Loop through the appointment(s)
93
93
for appointment in appointments :
94
94
# Skip cancelled or rejected
@@ -162,7 +162,7 @@ async def get_appointments_past(self) -> any:
162
162
163
163
if appointments :
164
164
_LOGGER .debug ('Fetched past appointments' )
165
-
165
+
166
166
# Loop through the appointment(s)
167
167
for appointment in appointments :
168
168
# If there was no appointment time, skip it
@@ -171,7 +171,7 @@ async def get_appointments_past(self) -> any:
171
171
break
172
172
173
173
_LOGGER .debug ('Found past appointment' )
174
-
174
+
175
175
# Get the appointment time
176
176
start = datetime .strptime (appointment .get ("AppFromTimeSlot" ) + "+1300" , "%Y-%m-%dT%H:%M:%S%z" )
177
177
You can’t perform that action at this time.
0 commit comments