mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-14 10:17:52 -06:00
Add spaces around binary operator
According to our code style. Contributes to issue CURA-3756.
This commit is contained in:
parent
53141303d2
commit
61f7b6aa68
1 changed files with 1 additions and 1 deletions
|
@ -191,7 +191,7 @@ class ThreeMFWorkspaceReader(WorkspaceReader):
|
||||||
serialized = archive.open(container_stack_file).read().decode("utf-8")
|
serialized = archive.open(container_stack_file).read().decode("utf-8")
|
||||||
if machine_name == "":
|
if machine_name == "":
|
||||||
machine_name = self._getMachineNameFromSerializedStack(serialized)
|
machine_name = self._getMachineNameFromSerializedStack(serialized)
|
||||||
stacks = self._container_registry.findContainerStacks(id=container_id)
|
stacks = self._container_registry.findContainerStacks(id = container_id)
|
||||||
if stacks:
|
if stacks:
|
||||||
# Check if there are any changes at all in any of the container stacks.
|
# Check if there are any changes at all in any of the container stacks.
|
||||||
id_list = self._getContainerIdListFromSerialized(serialized)
|
id_list = self._getContainerIdListFromSerialized(serialized)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue