correct getrecordings method
This commit is contained in:
@@ -53,9 +53,9 @@ class RecordingGrouper:
|
||||
self.data = data
|
||||
|
||||
def getRecordings(self):
|
||||
for uc in self.data.use_cases():
|
||||
for detection in data.detections(uc):
|
||||
return detection.recordings()
|
||||
for detection in data.detections(self.data.use_cases()):
|
||||
for recording in detection.recordings():
|
||||
yield recording
|
||||
|
||||
def getRecordingGroups(self):
|
||||
groups = []
|
||||
|
||||
Reference in New Issue
Block a user