We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e5b499f commit 05abde7Copy full SHA for 05abde7
1 file changed
bbblb/model.py
@@ -676,7 +676,7 @@ class Recording(Base):
676
def validate_meta(self, key, meta):
677
if not isinstance(meta, (dict)):
678
raise TypeError(f"Recording.{key} must be a dict")
679
- for key, value in meta:
+ for key, value in meta.items():
680
if not key:
681
raise TypeError(f"Recording.{key} keys must be non-empty strings")
682
if not value or not isinstance(value, str):
0 commit comments