From e7eb745d9924523ab34913761d7a6580fd2a0a15 Mon Sep 17 00:00:00 2001 From: Kevin O'Connor Date: Wed, 27 Feb 2019 13:04:56 -0500 Subject: [PATCH] mathutil: Wrap code to 80 columns Signed-off-by: Kevin O'Connor --- klippy/mathutil.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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