Make _geSettingFromAllExtruders use zip

This is a bit cleaner to use
This commit is contained in:
Jaime van Kessel 2019-06-07 13:40:41 +02:00
parent a6ca49d68c
commit 1759e01b27
2 changed files with 4 additions and 4 deletions

View file

@ -180,7 +180,7 @@ class ExtruderManager(QObject):
# \param setting_key \type{str} The setting to get the property of.
# \param property \type{str} The property to get.
# \return \type{List} the list of results
def getAllExtruderSettings(self, setting_key: str, prop: str) -> List:
def getAllExtruderSettings(self, setting_key: str, prop: str) -> List[Any]:
result = []
for extruder_stack in self.getActiveExtruderStacks():