From e2729d283e670e389e9b01716d09cdf02f758850 Mon Sep 17 00:00:00 2001 From: Richard Lewis Date: Wed, 27 Jan 2016 08:44:06 -0500 Subject: [PATCH] Fixed linting. --- suplemon/modules/battery.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/suplemon/modules/battery.py b/suplemon/modules/battery.py index a848b02..7a5cf65 100644 --- a/suplemon/modules/battery.py +++ b/suplemon/modules/battery.py @@ -72,7 +72,7 @@ def battery_status_read(self): def battery_status_acpi(self): """Get the battery status via acpi.""" try: - FNULL = open(os.devnull, 'w') + FNULL = open(os.devnull, "w") raw_str = subprocess.check_output(["acpi"], stdout=FNULL, stderr=FNULL) except: return None