Skip to content

Commit 6abba88

Browse files
committed
🐛 Ensure folder ID retrieval arguments are passed
Fixes bug where the method for Folder is not passed kwargs
1 parent f473a2b commit 6abba88

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

simvue/api/objects/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -365,7 +365,7 @@ def ids(
365365
"""
366366
_class_instance = cls(_read_only=True, _local=True)
367367
_count: int = 0
368-
for response in cls._get_all_objects(offset, count=count):
368+
for response in cls._get_all_objects(offset, count=count, **kwargs):
369369
if (_data := response.get("data")) is None:
370370
raise RuntimeError(
371371
f"Expected key 'data' for retrieval of {_class_instance.__class__.__name__.lower()}s"

0 commit comments

Comments
 (0)