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 706aca7 commit 777c475Copy full SHA for 777c475
1 file changed
src/glasses3/recordings/__init__.py
@@ -157,6 +157,9 @@ def children(self) -> List[Recording]:
157
"""This property is not recommended for use since the object itself has functionality of a list. See `__iter__` and `__getitem__` methods."""
158
return list(reversed(self._children.values()))
159
160
+ def get_recording(self, uuid: str) -> Recording:
161
+ return self._children[uuid]
162
+
163
def __iter__(self) -> Iterable[Recording]:
164
yield from reversed(self._children.values())
165
0 commit comments