Skip to content

Commit a3e0db5

Browse files
committed
chore: restore strict=True as per maintainer preference for Python 3.12+
1 parent 09fc26d commit a3e0db5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/create_experiment.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,5 +47,5 @@ def make_modality_config(*device_names, sampling_rates=None, offsets=None):
4747

4848
return {
4949
name: {"interpolation": {"sampling_rate": sr, "offset": off}}
50-
for name, sr, off in zip(device_names, sampling_rates, offsets)
50+
for name, sr, off in zip(device_names, sampling_rates, offsets, strict=True)
5151
}

0 commit comments

Comments
 (0)