Skip to content

Missed error when downloading videos #261

@isabelleormerod

Description

@isabelleormerod

Hi there,

I was attempting to download videos from the API locally - it wasn't working so I ran some debugging and the issue was with the lines:

for dID in mappingCamDevice.keys():
mappingCamDevice[dID.upper()] = mappingCamDevice.pop(dID)

within the download_videos_from_server function, it worked once I replaced it with:

mappingCamDevice = {k.upper():v for k,v in mappingCamDevice.items()}

Currently running on 3.9.21 so maybe it's a non-issue, but hoping it's helpful.

Metadata

Metadata

Labels

No labels
No labels

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions