From 501b4c4fde1d28520c03f249ee86487c5fed43b7 Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Tue, 5 Oct 2021 13:54:13 +0200 Subject: [PATCH] Spaces around assignment operator According to UM codestyle Contributes to CURA-8601 --- .../UM3NetworkPrinting/src/Messages/CloudFlowMessage.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py b/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py index 3ef5a6bf43..34687339a9 100644 --- a/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py +++ b/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py @@ -21,14 +21,14 @@ class CloudFlowMessage(Message): "resources", "svg", "CloudPlatform.svg" ) super().__init__( - text=I18N_CATALOG.i18nc("@info:status", + text = I18N_CATALOG.i18nc("@info:status", f"Your printer {printer_name} could be connected via cloud.\n Manage your print queue and monitor your prints from anywhere connecting your printer to Digital Factory"), - title=I18N_CATALOG.i18nc("@info:title", "Are you ready for cloud printing?"), - image_source=QUrl.fromLocalFile(image_path) + title = I18N_CATALOG.i18nc("@info:title", "Are you ready for cloud printing?"), + image_source = QUrl.fromLocalFile(image_path) ) self._printer_name = printer_name self.addAction("get_started", I18N_CATALOG.i18nc("@action", "Get started"), "", "") - self.addAction("learn_more", I18N_CATALOG.i18nc("@action", "Learn more"), "", "", button_style=Message.ActionButtonStyle.LINK, button_align=Message.ActionButtonAlignment.ALIGN_LEFT) + self.addAction("learn_more", I18N_CATALOG.i18nc("@action", "Learn more"), "", "", button_style = Message.ActionButtonStyle.LINK, button_align = Message.ActionButtonAlignment.ALIGN_LEFT) self.actionTriggered.connect(self._onCloudFlowStarted)