whitespace cleanup

main
Mark Cotton 2023-09-07 08:03:41 -05:00
parent 38f3649a47
commit 578d12d2c5
1 changed files with 14 additions and 13 deletions

View File

@ -875,7 +875,6 @@ class Camera(Device):
'motion': []
}
def get_list_of_events(self, start_timestamp=None, end_timestamp=None):
"""
Obtains the list of events.
@ -948,7 +947,6 @@ class Camera(Device):
"data": response_json
}
def get_live_preview(self):
url = f"https://{self.user_base_url}/api/v3.0/media/liveImage.jpeg?deviceId={self.id}&type=preview"
@ -972,16 +970,6 @@ class Camera(Device):
return response
def get_list_of_videos(self, start_timestamp=None, end_timestamp=None, stream_type='main', media_type='video', coalesce='true', include=['mp4Url']):
"""
Obtains the list of videos.
@ -1065,3 +1053,16 @@ class Camera(Device):
"data": self.videos
}