We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8a59f70 + bb1c11e commit 4351a24Copy full SHA for 4351a24
1 file changed
src/spikeinterface/widgets/traces.py
@@ -145,7 +145,7 @@ def __init__(
145
fs = rec0.get_sampling_frequency()
146
if time_range is None:
147
time_range = (t_start, t_start + 1.0)
148
- time_range = np.array(time_range)
+ time_range = np.array(time_range, dtype=np.float64)
149
if time_range[1] > t_end:
150
warnings.warn(
151
"You have selected a time after the end of the segment. The range will be clipped to " f"{t_end}"
0 commit comments