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 23, 2024
1 parent 4cc1e45 commit 2468b8c
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions attune/_tune.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,12 @@ def _leaf(self):
out = " {0} points, ".format(self.independent.size)
functional_notation = "[{0}, {1}] {2} -> [{3}, {4}] {5}"
out += functional_notation.format(
self.independent.min(), self.independent.max(), self.ind_units,
self.dependent.min(), self.dependent.max(), self.dep_units
self.independent.min(),
self.independent.max(),
self.ind_units,
self.dependent.min(),
self.dependent.max(),
self.dep_units,
)
out += ", {0}monotonic".format("" if self.monotonic else "non-")
return out
Expand Down

0 comments on commit 2468b8c

Please sign in to comment.