1
0
mirror of https://github.com/no2chem/wideq.git synced 2025-05-16 07:10:09 -07:00

Trailing whitespace

This commit is contained in:
Adrian Sampson 2019-08-24 09:26:17 -04:00
parent 9533bb8ec1
commit f33be0f99d
2 changed files with 2 additions and 2 deletions

View File

@ -96,7 +96,7 @@ class DryerDevice(Device):
# Abort if monitoring has not started yet. # Abort if monitoring has not started yet.
if not hasattr(self, 'mon'): if not hasattr(self, 'mon'):
return None return None
data = self.mon.poll() data = self.mon.poll()
if data: if data:
res = self.model.decode_monitor(data) res = self.model.decode_monitor(data)

View File

@ -48,7 +48,7 @@ class WasherDevice(Device):
# Abort if monitoring has not started yet. # Abort if monitoring has not started yet.
if not hasattr(self, 'mon'): if not hasattr(self, 'mon'):
return None return None
data = self.mon.poll() data = self.mon.poll()
if data: if data:
res = self.model.decode_monitor(data) res = self.model.decode_monitor(data)