From 729f4c9d52975c2503a22dfa69e7b4585cfb6488 Mon Sep 17 00:00:00 2001 From: Ian Paschal Date: Fri, 8 Feb 2019 09:40:56 +0100 Subject: [PATCH] Revert "Fix line length" This reverts commit 19f1a2f2d047f646c227e3fbb0d74f2cb7d57abd. --- plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py b/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py index 866d62ad52..052dd0b979 100644 --- a/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py +++ b/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py @@ -356,10 +356,7 @@ class ClusterUM3OutputDevice(NetworkedPrinterOutputDevice): # This function is part of the output device (and not of the printjob output model) as this type of operation # is a modification of the cluster queue and not of the actual job. data = "{\"to_position\": 0}" - self.put( - "print_jobs/{uuid}/move_to_position".format( uuid = print_job_uuid), - data, - on_finished=None) + self.put("print_jobs/{uuid}/move_to_position".format(uuid = print_job_uuid), data, on_finished=None) @pyqtSlot(str) def deleteJobFromQueue(self, print_job_uuid: str) -> None: