From d4f8e4c4ac5786b7452c6ee6b433ac6c0801d797 Mon Sep 17 00:00:00 2001 From: Marco Zeisler Date: Mon, 24 May 2021 17:57:18 +0200 Subject: [PATCH] fix line too long --- components/shared/message_broker_wrapper.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/components/shared/message_broker_wrapper.py b/components/shared/message_broker_wrapper.py index fbe5ae0..81824ef 100644 --- a/components/shared/message_broker_wrapper.py +++ b/components/shared/message_broker_wrapper.py @@ -38,7 +38,8 @@ class MBWrapper: def setup_receiver(self): assert self._type != 'sender', 'MBWrapper is already a sender. Use another MBWrapper.' - assert self.callback, 'Please setup MBWrapper with "on response" self.callback which can handle a byte string as input.' + assert self.callback, \ + 'Please setup MBWrapper with "on response" self.callback which can handle a byte string as input.' def consumer(): self._setup_channel()