From c161c52b91df55e59441551353551c5b539121ad Mon Sep 17 00:00:00 2001 From: Phil Howard Date: Thu, 30 Jul 2020 10:47:04 +0100 Subject: [PATCH] Fix combined.py indentation for Python 3.x --- examples/combined.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/combined.py b/examples/combined.py index b417ccf..6c4ab6f 100755 --- a/examples/combined.py +++ b/examples/combined.py @@ -26,7 +26,7 @@ logging.basicConfig( level=logging.INFO, datefmt='%Y-%m-%d %H:%M:%S') -logging.info("""all-in-one.py - Displays readings from all of Enviro plus' sensors +logging.info("""combined.py - Displays readings from all of Enviro plus' sensors Press Ctrl+C to exit! @@ -172,7 +172,7 @@ def display_everything(): variable = variables[i] data_value = values[variable][-1] unit = units[i] - x = x_offset + ((WIDTH / column_count) * (i / row_count)) + x = x_offset + ((WIDTH // column_count) * (i // row_count)) y = y_offset + ((HEIGHT / row_count) * (i % row_count)) message = "{}: {:.1f} {}".format(variable[:4], data_value, unit) lim = limits[i] -- 2.30.2