Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Nov 21, 2024
1 parent ca0a41c commit c1f20ed
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions tests/unit_tests/test_general.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,6 @@ def test_check_description_missing():

def test_check_description_feature_extraction():
import numpy as np

from pynwb.ecephys import FeatureExtraction
from pynwb.testing.mock.ecephys import mock_ElectrodeTable

Expand All @@ -68,10 +67,8 @@ def test_check_description_feature_extraction():
name="PCA_features",
electrodes=dynamic_table_region,
description=["PC1", "PC2", "PC3", "PC4"],
times=[.033, .066, .099],
times=[0.033, 0.066, 0.099],
features=np.random.rand(3, 5, 4), # time, channel, feature
)

assert check_description(neurodata_object=feature_extraction) is None


0 comments on commit c1f20ed

Please sign in to comment.