Skip to content
Snippets Groups Projects

Sc209/dropdown menus

Merged Ghost User requested to merge SC209/dropdown-menus into review-window
2 files
+ 14
7
Compare changes
  • Side-by-side
  • Inline
Files
2
+ 3
3
@@ -203,13 +203,13 @@ class Controller:
shadows = np.array([])
source_success.append(success)
for shadow_candidate in non_matched_shadows:
participant, task = shadow_regex(shadow_candidate, video)
if task is not None:
participant, condition = shadow_regex(shadow_candidate, video)
if condition is not None:
shadow_data = self._filereader.read(shadow_candidate,
'shadow')
self._model.add_task(participant,
video,
task,
condition,
source_data,
shadow_data)
np.append(shadows, shadow_candidate)
Loading