fix vars named l

E741 says "do not use variables named ‘l’, ‘O’, or ‘I’".
This commit is contained in:
Richard van der Hoff 2017-10-23 15:56:38 +01:00
parent eaaabc6c4f
commit 0be99858f3
2 changed files with 4 additions and 7 deletions

View file

@ -91,7 +91,4 @@ class WheelTimer(object):
return ret
def __len__(self):
l = 0
for entry in self.entries:
l += len(entry.queue)
return l
return sum(len(entry.queue) for entry in self.entries)