From cf604570bb5756563f8c329dde810e6f51b98ffc Mon Sep 17 00:00:00 2001 From: Ghostkeeper Date: Mon, 14 Jun 2021 15:41:30 +0200 Subject: [PATCH] Fix code style Contributes to issue CURA-7859. --- cura/CuraActions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cura/CuraActions.py b/cura/CuraActions.py index 3ae458985b..4d121338d8 100644 --- a/cura/CuraActions.py +++ b/cura/CuraActions.py @@ -75,7 +75,7 @@ class CuraActions(QObject): center_y = 0 # Move the object so that it's bottom is on to of the buildplate - center_operation = TranslateOperation(current_node, Vector(0, center_y, 0), set_position= True) + center_operation = TranslateOperation(current_node, Vector(0, center_y, 0), set_position = True) operation.addOperation(center_operation) operation.push()