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 Jan 25, 2024
1 parent 9e19f6e commit 9af21eb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/tune.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@


def test_equality():
x1 = np.linspace(0,1,5)
y1 = np.linspace(3,5,5)
x1 = np.linspace(0, 1, 5)
y1 = np.linspace(3, 5, 5)
t1 = attune.Tune(x1, y1)
t2 = attune.Tune(x1, y1+0.1)
t2 = attune.Tune(x1, y1 + 0.1)
t3 = attune.Tune(x1[:-1], y1[:-1])

assert t1 == t1
Expand Down

0 comments on commit 9af21eb

Please sign in to comment.