Skip to content

Commit 0e8e61c

Browse files
committed
fix linter
1 parent 671d00d commit 0e8e61c

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

weconnect/elements/timer.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,12 @@ def update(self, fromDict):
203203
self.startTime.enabled = False
204204

205205
for key, value in {key: value for key, value in fromDict.items()
206-
if key not in ['startDateTime', 'targetDateTime', 'startDateTimeLocal', 'targetDateTimeLocal', 'occurringOn', 'startTime']}.items():
206+
if key not in ['startDateTime',
207+
'targetDateTime',
208+
'startDateTimeLocal',
209+
'targetDateTimeLocal',
210+
'occurringOn',
211+
'startTime']}.items():
207212
LOG.warning('%s: Unknown attribute %s with value %s', self.getGlobalAddress(), key, value)
208213

209214
def __str__(self):

0 commit comments

Comments
 (0)