more pep8 suggestions
parent
b3f66ea6fb
commit
fc7a05c443
|
@ -74,7 +74,6 @@ class Pusher(object):
|
||||||
|
|
||||||
defer.returnValue(ctx)
|
defer.returnValue(ctx)
|
||||||
|
|
||||||
|
|
||||||
@defer.inlineCallbacks
|
@defer.inlineCallbacks
|
||||||
def start(self):
|
def start(self):
|
||||||
if not self.last_token:
|
if not self.last_token:
|
||||||
|
@ -116,7 +115,7 @@ class Pusher(object):
|
||||||
processed = False
|
processed = False
|
||||||
if self._should_notify_for_event(single_event):
|
if self._should_notify_for_event(single_event):
|
||||||
rejected = yield self.dispatch_push(single_event)
|
rejected = yield self.dispatch_push(single_event)
|
||||||
if not rejected == False:
|
if not rejected is False:
|
||||||
processed = True
|
processed = True
|
||||||
for pk in rejected:
|
for pk in rejected:
|
||||||
if pk != self.pushkey:
|
if pk != self.pushkey:
|
||||||
|
|
Loading…
Reference in New Issue