From f3736f0576085ca22c22942a28774d41f75229d8 Mon Sep 17 00:00:00 2001 From: Ghostkeeper Date: Wed, 23 Oct 2019 07:40:12 +0000 Subject: [PATCH] Add typing for _machines Contributes to issue CURA-6793. Co-Authored-By: Jaime van Kessel --- cura/Machines/ContainerTree.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cura/Machines/ContainerTree.py b/cura/Machines/ContainerTree.py index 699c621fbe..a058eef72e 100644 --- a/cura/Machines/ContainerTree.py +++ b/cura/Machines/ContainerTree.py @@ -84,7 +84,7 @@ class ContainerTree: # This handles the lazy loading of MachineNodes. class MachineNodeMap: def __init__(self) -> None: - self._machines = {} + self._machines = {} # type: Dict[str, MachineNode] ## Returns whether a printer with a certain definition ID exists. This # is regardless of whether or not the printer is loaded yet.