Skip to content

Commit

Permalink
Pass modules to dataset in video timelines processor
Browse files Browse the repository at this point in the history
  • Loading branch information
stijn-uva committed Nov 13, 2024
1 parent dc17324 commit 4e5ef88
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion processors/visualisation/video_timelines.py
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ def get_video_labels(self, metadata):
labels[filename] = filename

for dataset, urls in mapping_dataset.items():
dataset = DataSet(key=dataset, db=self.db).nearest("*-search")
dataset = DataSet(key=dataset, db=self.db, modules=self.modules).nearest("*-search")

# determine appropriate label
# is this the right place? should it be in the datasource?
Expand Down

0 comments on commit 4e5ef88

Please sign in to comment.