Fix a wrong type hinting

This commit is contained in:
Lipu Fei 2018-08-13 13:44:07 +02:00
parent 5ede82eddc
commit 42b509cd4a

View file

@ -49,7 +49,7 @@ class MachineManager(QObject):
def __init__(self, parent: QObject = None) -> None:
super().__init__(parent)
self._active_container_stack = None # type: Optional[ExtruderManager]
self._active_container_stack = None # type: Optional[ExtruderStack]
self._global_container_stack = None # type: Optional[GlobalStack]
self._current_root_material_id = {} # type: Dict[str, str]