Skip to content

Commit

Permalink
remove re imported import in test
Browse files Browse the repository at this point in the history
  • Loading branch information
anilbey committed Dec 19, 2023
1 parent 5784c06 commit c101450
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions tests/test_allfeatures.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,14 +43,12 @@

def get_allfeature_values():
"""Get back all the feature names and value"""

import numpy
efel.reset()

all_featurenames = efel.getFeatureNames()

def load_data(filename):
data = numpy.loadtxt(os.path.join(testdata_dir, filename))
data = np.loadtxt(os.path.join(testdata_dir, filename))
return data[:, 0], data[:, 1]

soma_time, soma_voltage = load_data('testdata.txt')
Expand Down

0 comments on commit c101450

Please sign in to comment.