From 037f1967c851dc9cccddde003bf372c6acf96939 Mon Sep 17 00:00:00 2001 From: Ghostkeeper Date: Wed, 10 Jul 2019 14:57:26 +0200 Subject: [PATCH] Remove override for version number in CuraContainerStack Otherwise plug-ins can't register ContainerStacks any more. As discussed in the CCB. --- cura/Settings/CuraContainerStack.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/cura/Settings/CuraContainerStack.py b/cura/Settings/CuraContainerStack.py index 278bc1dc4f..c141ac9b0e 100755 --- a/cura/Settings/CuraContainerStack.py +++ b/cura/Settings/CuraContainerStack.py @@ -37,8 +37,6 @@ from . import Exceptions # This also means that operations on the stack that modifies the container ordering is prohibited and # will raise an exception. class CuraContainerStack(ContainerStack): - Version = 5 # type: int - def __init__(self, container_id: str) -> None: super().__init__(container_id)