put argument init on separate lines

This commit is contained in:
Mike Fährmann
2023-02-10 17:05:20 +01:00
parent 2a53e6445c
commit 1aae72773f
3 changed files with 13 additions and 6 deletions

View File

@@ -737,7 +737,8 @@ class RangePredicate():
self.lower = min(r.start for r in ranges)
self.upper = max(r.stop for r in ranges) - 1
else:
self.lower = self.upper = 0
self.lower = 0
self.upper = 0
def __call__(self, _url, _kwdict):
self.index = index = self.index + 1