Skip to content

Commit 3e1221e

Browse files
committed
single to double quotes
1 parent 65cd2d8 commit 3e1221e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ibllib/io/extractors/mesoscope.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -672,7 +672,7 @@ def _extract(self, sync=None, chmap=None, device_collection='raw_imaging_data',
672672
_, fov_time_shifts, line_time_shifts = self.get_timeshifts(imaging_data['meta'])
673673
assert len(fov_time_shifts) == self.n_FOVs, f'unexpected number of FOVs for {collection}'
674674
ts = frame_times[np.logical_and(frame_times >= tmin, frame_times <= tmax)]
675-
assert ts.size >= imaging_data['times_scanImage'].size, f'fewer DAQ timestamps for {collection} than expected: DAQ/frames = {ts.size}/{imaging_data['times_scanImage'].size}'
675+
assert ts.size >= imaging_data['times_scanImage'].size, f"fewer DAQ timestamps for {collection} than expected: DAQ/frames = {ts.size}/{imaging_data['times_scanImage'].size}"
676676
if ts.size > imaging_data['times_scanImage'].size:
677677
_logger.warning(
678678
'More DAQ frame times detected for %s than were found in the raw image data.\n'

0 commit comments

Comments
 (0)