Skip to content
This repository was archived by the owner on Nov 20, 2024. It is now read-only.
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Remove comments
  • Loading branch information
osode authored and m4reko committed Aug 22, 2022
commit 2e08620a7c5480e7aa0b3ec44c0ca145a4ec3980
4 changes: 2 additions & 2 deletions src/g3pylib/recordings/recording.py
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ async def get_scenevideo_url(self) -> str:
except KeyError:
print(
"Could not retrieve file name for recording from recording data."
) # TODO: sufficient error handling?
)
raise
return f"{data_url}/{scenevideo_file_name}"

Expand All @@ -191,6 +191,6 @@ async def get_gazedata_url(self) -> str:
except KeyError:
print(
"Could not retrieve file name for gaze data from recording data."
) # TODO: sufficient error handling?
)
raise
return f"{data_url}/{gaze_file_name}?use-content-encoding=true"