Skip to content

Commit

Permalink
Fix type
Browse files Browse the repository at this point in the history
  • Loading branch information
bjhardcastle committed Sep 14, 2023
1 parent 2c0656d commit e2e901b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/npc_sessions/sessions.py
Original file line number Diff line number Diff line change
Expand Up @@ -963,7 +963,7 @@ def stim_frame_times(self) -> dict[str, npt.NDArray[np.float64]]:
}
asserted_stim_frame_times: dict[str, npt.NDArray[np.float64]] = {}
for k, v in self._stim_frame_times.items():
utils.assert_stim_times(self._stim_frame_times[k])
v = utils.assert_stim_times(v)
asserted_stim_frame_times[k] = v
assert not any(isinstance(v, Exception) for v in asserted_stim_frame_times.values())
return asserted_stim_frame_times
Expand Down

0 comments on commit e2e901b

Please sign in to comment.