Skip to content

Commit

Permalink
Merge pull request #2728 from DradeAW/patch-1
Browse files Browse the repository at this point in the history
Multiple verbose arguments fix
  • Loading branch information
alejoe91 authored Apr 18, 2024
2 parents 33d478a + de181c4 commit 9811b8d
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/spikeinterface/core/recording_tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -336,6 +336,9 @@ def write_memory_recording(recording, dtype=None, verbose=False, auto_cast_uint=
else:
init_args = (recording, arrays, None, None, dtype, cast_unsigned)

if "verbose" in job_kwargs:
del job_kwargs["verbose"]

executor = ChunkRecordingExecutor(
recording, func, init_func, init_args, verbose=verbose, job_name="write_memory_recording", **job_kwargs
)
Expand Down

0 comments on commit 9811b8d

Please sign in to comment.