From 998bb2e90a2bab0ce43f92ee0988bfab3a29ea96 Mon Sep 17 00:00:00 2001 From: Phil Howard Date: Tue, 20 Aug 2019 16:17:12 +0100 Subject: [PATCH] Dropped obsolete .decode() --- examples/all-in-one-no-pm.py | 1 - examples/all-in-one.py | 1 - examples/luftdaten.py | 1 - 3 files changed, 3 deletions(-) diff --git a/examples/all-in-one-no-pm.py b/examples/all-in-one-no-pm.py index 4d6d463..ab1a1a7 100755 --- a/examples/all-in-one-no-pm.py +++ b/examples/all-in-one-no-pm.py @@ -80,7 +80,6 @@ def display_text(variable, data, unit): def get_cpu_temperature(): process = Popen(['vcgencmd', 'measure_temp'], stdout=PIPE, universal_newlines=True) output, _error = process.communicate() - output = output.decode() return float(output[output.index('=') + 1:output.rindex("'")]) diff --git a/examples/all-in-one.py b/examples/all-in-one.py index 8e82b6b..6314137 100755 --- a/examples/all-in-one.py +++ b/examples/all-in-one.py @@ -86,7 +86,6 @@ def display_text(variable, data, unit): def get_cpu_temperature(): process = Popen(['vcgencmd', 'measure_temp'], stdout=PIPE, universal_newlines=True) output, _error = process.communicate() - output = output.decode() return float(output[output.index('=') + 1:output.rindex("'")]) diff --git a/examples/luftdaten.py b/examples/luftdaten.py index 9995914..358d442 100755 --- a/examples/luftdaten.py +++ b/examples/luftdaten.py @@ -74,7 +74,6 @@ def read_values(): def get_cpu_temperature(): process = Popen(['vcgencmd', 'measure_temp'], stdout=PIPE, universal_newlines=True) output, _error = process.communicate() - output = output.decode() return float(output[output.index('=') + 1:output.rindex("'")]) -- 2.30.2