mirror of
https://github.com/aljazceru/python-teos.git
synced 2025-12-18 06:34:19 +01:00
Removed redundant parentheses
This commit is contained in:
@@ -67,7 +67,7 @@ class Watcher:
|
|||||||
|
|
||||||
logger.info("New appointment accepted.", locator=appointment.locator)
|
logger.info("New appointment accepted.", locator=appointment.locator)
|
||||||
|
|
||||||
if (self.signing_key is not None):
|
if self.signing_key is not None:
|
||||||
signature = self.signing_key.sign(appointment.to_json().encode('utf8'))
|
signature = self.signing_key.sign(appointment.to_json().encode('utf8'))
|
||||||
|
|
||||||
else:
|
else:
|
||||||
@@ -75,7 +75,7 @@ class Watcher:
|
|||||||
|
|
||||||
logger.info("Maximum appointments reached, appointment rejected.", locator=appointment.locator)
|
logger.info("Maximum appointments reached, appointment rejected.", locator=appointment.locator)
|
||||||
|
|
||||||
return (appointment_added, signature)
|
return appointment_added, signature
|
||||||
|
|
||||||
def do_subscribe(self):
|
def do_subscribe(self):
|
||||||
self.zmq_subscriber = ZMQHandler(parent="Watcher")
|
self.zmq_subscriber = ZMQHandler(parent="Watcher")
|
||||||
|
|||||||
Reference in New Issue
Block a user