Skip to content

Commit

Permalink
Fix intan kwargs (#3054)
Browse files Browse the repository at this point in the history
* add "ignore_integrity_checks" to  intan kwargs
  • Loading branch information
h-mayorquin authored Jun 20, 2024
1 parent e139e75 commit 328bba0
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/spikeinterface/extractors/neoextractors/intan.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,8 @@ def __init__(
)

self._kwargs.update(dict(file_path=str(Path(file_path).absolute())))
if "ignore_integrity_checks" in neo_kwargs:
self._kwargs["ignore_integrity_checks"] = neo_kwargs["ignore_integrity_checks"]

@classmethod
def map_to_neo_kwargs(cls, file_path, ignore_integrity_checks: bool = False):
Expand Down

0 comments on commit 328bba0

Please sign in to comment.