mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2024-10-01 11:49:51 -04:00
fix vars named l
E741 says "do not use variables named ‘l’, ‘O’, or ‘I’".
This commit is contained in:
parent
eaaabc6c4f
commit
0be99858f3
@ -59,9 +59,9 @@ class Clock(object):
|
|||||||
f(function): The function to call repeatedly.
|
f(function): The function to call repeatedly.
|
||||||
msec(float): How long to wait between calls in milliseconds.
|
msec(float): How long to wait between calls in milliseconds.
|
||||||
"""
|
"""
|
||||||
l = task.LoopingCall(f)
|
call = task.LoopingCall(f)
|
||||||
l.start(msec / 1000.0, now=False)
|
call.start(msec / 1000.0, now=False)
|
||||||
return l
|
return call
|
||||||
|
|
||||||
def call_later(self, delay, callback, *args, **kwargs):
|
def call_later(self, delay, callback, *args, **kwargs):
|
||||||
"""Call something later
|
"""Call something later
|
||||||
|
@ -91,7 +91,4 @@ class WheelTimer(object):
|
|||||||
return ret
|
return ret
|
||||||
|
|
||||||
def __len__(self):
|
def __len__(self):
|
||||||
l = 0
|
return sum(len(entry.queue) for entry in self.entries)
|
||||||
for entry in self.entries:
|
|
||||||
l += len(entry.queue)
|
|
||||||
return l
|
|
||||||
|
Loading…
Reference in New Issue
Block a user