Skip to content

Commit

Permalink
adding missing type parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
adrima01 committed Jun 19, 2024
1 parent ab2c84f commit 978e2f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pylookyloo/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -494,7 +494,7 @@ def send_mail(self, tree_uuid: str, email: str = '', comment: str | None = None)
r = self.session.post(urljoin(self.root_url, str(PurePosixPath('json', tree_uuid, 'report'))), json=to_send)
return r.json()

def get_recent_captures(self, timestamp:str) -> list:
def get_recent_captures(self, timestamp:str) -> list[str]:
'''Gets the uuids of the most recent captures
:param timestamp: Timestamp of the capture
Expand Down

0 comments on commit 978e2f5

Please sign in to comment.