Skip to content

Commit 36caf68

Browse files
committed
Flake
1 parent 44e115c commit 36caf68

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

ibllib/pipes/ephys_preprocessing.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1070,7 +1070,7 @@ class EphysPostDLC(tasks.Task):
10701070
# In particular the raw videos don't need to be downloaded as they can be streamed
10711071
('_iblrig_bodyCamera.raw.mp4', 'raw_video_data', False),
10721072
('_iblrig_leftCamera.raw.mp4', 'raw_video_data', False),
1073-
('_iblrig_rightCamera.raw.mp4','raw_video_data', False),
1073+
('_iblrig_rightCamera.raw.mp4', 'raw_video_data', False),
10741074
('rightROIMotionEnergy.position.npy', 'alf', False),
10751075
('leftROIMotionEnergy.position.npy', 'alf', False),
10761076
('bodyROIMotionEnergy.position.npy', 'alf', False),

ibllib/plots/figures.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -746,7 +746,7 @@ def dlc_qc_plot(session_path, one=None):
746746
except ALFObjectNotFound:
747747
pass
748748
try:
749-
data[f'{alf_object}'] = one.load_object(one.path2eid(session_path), alf_object) # then try from alyx
749+
data[f'{alf_object}'] = one.load_object(one.path2eid(session_path), alf_object) # then try from alyx
750750
except ALFObjectNotFound:
751751
logger.warning(f"Could not load {alf_object} object, some plots have to be skipped.")
752752
data[f'{alf_object}'] = None
@@ -792,7 +792,7 @@ def dlc_qc_plot(session_path, one=None):
792792
'wheel_time': data['wheel'].timestamps,
793793
'trials_df': data['trials']}))
794794
else:
795-
panels.append((None, f'Data missing\nWheel position'))
795+
panels.append((None, 'Data missing\nWheel position'))
796796

797797
# Panel F, G: Paw speed and nose speed
798798
# Try if all data is there for left cam first, otherwise right

0 commit comments

Comments
 (0)