Skip to content

Commit bfff6f9

Browse files
committed
Lint
1 parent 4306b20 commit bfff6f9

File tree

1 file changed

+3
-3
lines changed
  • custom_components/managemyhealth

1 file changed

+3
-3
lines changed

custom_components/managemyhealth/api.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ async def get_appointments(self) -> any:
8888

8989
if appointments:
9090
_LOGGER.debug('Fetched current appointments')
91-
91+
9292
# Loop through the appointment(s)
9393
for appointment in appointments:
9494
# Skip cancelled or rejected
@@ -162,7 +162,7 @@ async def get_appointments_past(self) -> any:
162162

163163
if appointments:
164164
_LOGGER.debug('Fetched past appointments')
165-
165+
166166
# Loop through the appointment(s)
167167
for appointment in appointments:
168168
# If there was no appointment time, skip it
@@ -171,7 +171,7 @@ async def get_appointments_past(self) -> any:
171171
break
172172

173173
_LOGGER.debug('Found past appointment')
174-
174+
175175
# Get the appointment time
176176
start = datetime.strptime(appointment.get("AppFromTimeSlot") + "+1300", "%Y-%m-%dT%H:%M:%S%z")
177177

0 commit comments

Comments
 (0)