Browse Source

Remove override for version number in CuraContainerStack

Otherwise plug-ins can't register ContainerStacks any more.

As discussed in the CCB.
Ghostkeeper 5 years ago
parent
commit
037f1967c8
1 changed files with 0 additions and 2 deletions
  1. 0 2
      cura/Settings/CuraContainerStack.py

+ 0 - 2
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)