diff --git a/app.py b/app.py index 06fc876..a4e9e11 100644 --- a/app.py +++ b/app.py @@ -371,10 +371,10 @@ def smart_temperature(device): return None for command in ( - ["smartctl", "-A", smart_device], ["smartctl", "-A", "-d", "sat", smart_device], - ["smartctl", "-x", smart_device], ["smartctl", "-x", "-d", "sat", smart_device], + ["smartctl", "-A", smart_device], + ["smartctl", "-x", smart_device], ): output, _ = _read_command(command, timeout=6, warn_on_nonzero=False) temperature = extract(output)