Skip to content
Snippets Groups Projects
Commit 8b6726fc authored by KERDREUX Jerome's avatar KERDREUX Jerome
Browse files

Formating, fix ruff errors

parent 9f8c31fe
No related branches found
No related tags found
No related merge requests found
......@@ -21,7 +21,7 @@ def now():
class TimedDict(dict):
def __init__(self,refresh_rate=REFRESH_RATE,data={}):
def __init__(self, refresh_rate=REFRESH_RATE, data={}):
dict.__init__(self,data)
self.last_update = 0
self.next_update = 0
......@@ -154,7 +154,7 @@ class Devices:
r.append(d)
return r
def get_with_key(self,key):
def get_with_key(self, key):
r = []
for d in self.get():
if key in d.db:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment