zerver/lib: Remove inheritance from object.

This commit is contained in:
rht
2017-11-05 11:37:41 +01:00
committed by showell
parent 0e71b243ce
commit e311842a1b
22 changed files with 28 additions and 28 deletions

View File

@@ -20,7 +20,7 @@ Consumer = Callable[[BlockingChannel, Basic.Deliver, pika.BasicProperties, str],
# rabbitmq/pika's queuing system; its purpose is to just provide an
# interface for external files to put things into queues and take them
# out from bots without having to import pika code all over our codebase.
class SimpleQueueClient(object):
class SimpleQueueClient:
def __init__(self):
# type: () -> None
self.log = logging.getLogger('zulip.queue')