summary refs log tree commit diff
path: root/synapse/util/__init__.py
diff options
context:
space:
mode:
authorRichard van der Hoff <richard@matrix.org>2017-10-23 15:56:38 +0100
committerRichard van der Hoff <richard@matrix.org>2017-10-23 15:56:38 +0100
commit0be99858f34165258af5d2865818f5baee35118b (patch)
tree9090c6c6f5ba5566786b8654cee07b3c3acd97c8 /synapse/util/__init__.py
parentreplace 'except:' with 'except Exception:' (diff)
downloadsynapse-0be99858f34165258af5d2865818f5baee35118b.tar.xz
fix vars named `l`
E741 says "do not use variables named ‘l’, ‘O’, or ‘I’".
Diffstat (limited to 'synapse/util/__init__.py')
-rw-r--r--synapse/util/__init__.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/synapse/util/__init__.py b/synapse/util/__init__.py

index cd1ce62bdb..756d8ffa32 100644 --- a/synapse/util/__init__.py +++ b/synapse/util/__init__.py
@@ -59,9 +59,9 @@ class Clock(object): f(function): The function to call repeatedly. msec(float): How long to wait between calls in milliseconds. """ - l = task.LoopingCall(f) - l.start(msec / 1000.0, now=False) - return l + call = task.LoopingCall(f) + call.start(msec / 1000.0, now=False) + return call def call_later(self, delay, callback, *args, **kwargs): """Call something later