From b9c258e38c716686df95d8780d5ed90cf9cd428e Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Sun, 8 Dec 2024 07:23:32 +0000 Subject: [PATCH] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- tests/test_io/test_spikeglx.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tests/test_io/test_spikeglx.py b/tests/test_io/test_spikeglx.py index fcb875e..e6bc657 100644 --- a/tests/test_io/test_spikeglx.py +++ b/tests/test_io/test_spikeglx.py @@ -20,6 +20,7 @@ def test_valid_probe_dict(meta_file: str): probe = read_spikeglx(data_path / meta_file) validate_probe_dict(probe.to_dict(array_as_list=True)) + def test_parse_meta(): for meta_file in [ "doppio-checkerboard_t0.imec0.ap.meta", @@ -44,7 +45,6 @@ def test_NP1(): assert "1.0" in probe.model_name - def test_NP_phase3A(): # Data provided by rtraghavan probe = read_spikeglx(data_path / "phase3a.imec.ap.meta") @@ -335,6 +335,5 @@ def test_CatGT_NP1(): assert "1.0" in probe.model_name - if __name__ == "__main__": test_NP2_1_shanks()