Skip to content

Commit

Permalink
Fixed linting.
Browse files Browse the repository at this point in the history
  • Loading branch information
richrd committed Jan 27, 2016
1 parent 8bd805e commit e2729d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion suplemon/modules/battery.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit e2729d2

Please sign in to comment.