aboutsummaryrefslogtreecommitdiffstats
path: root/klippy/mathutil.py
diff options
context:
space:
mode:
authorKevin O'Connor <kevin@koconnor.net>2019-02-27 13:04:56 -0500
committerKevin O'Connor <kevin@koconnor.net>2019-02-27 13:04:56 -0500
commite7eb745d9924523ab34913761d7a6580fd2a0a15 (patch)
tree784d0d0852715baeb4c2c763da28b033af825459 /klippy/mathutil.py
parent5bbae0710aa06f482f4b6abab56aa7a70cccd18f (diff)
downloadkutter-e7eb745d9924523ab34913761d7a6580fd2a0a15.tar.gz
kutter-e7eb745d9924523ab34913761d7a6580fd2a0a15.tar.xz
kutter-e7eb745d9924523ab34913761d7a6580fd2a0a15.zip
mathutil: Wrap code to 80 columns
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'klippy/mathutil.py')
-rw-r--r--klippy/mathutil.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/klippy/mathutil.py b/klippy/mathutil.py
index 81a949ad..737999b2 100644
--- a/klippy/mathutil.py
+++ b/klippy/mathutil.py
@@ -42,7 +42,8 @@ def coordinate_descent(adj_params, params, error_func):
continue
params[param_name] = orig
dp[param_name] *= 0.9
- logging.info("Coordinate descent best_err: %s rounds: %d", best_err, rounds)
+ logging.info("Coordinate descent best_err: %s rounds: %d",
+ best_err, rounds)
return params
# Helper to run the coordinate descent function in a background