Skip to content

Commit cf45f4c

Browse files
committed
chg: [absteact object] improve id iterator perf
1 parent 765980d commit cf45f4c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bin/lib/objects/abstract_daterange_object.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ def get_iterator_ids(self):
224224
return sscan_iterator(r_object, f'{self.type}:all')
225225

226226
def get_iterator(self):
227-
for obj_id in self.get_ids():
227+
for obj_id in self.get_iterator_ids():
228228
yield self.obj_class(obj_id)
229229

230230
def get_nb(self):

0 commit comments

Comments
 (0)