mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-13 01:37:51 -06:00
Fix typing issue
This commit is contained in:
parent
5ee6cd7e8f
commit
189d873fc1
1 changed files with 2 additions and 2 deletions
|
@ -14,7 +14,7 @@ class ClusterPrinterMaterialStation(BaseModel):
|
|||
# \param: supported: Whether the material station is supported on this machine or not.
|
||||
# \param material_slots: The active slots configurations of this material station.
|
||||
def __init__(self, status: str, supported: bool = False,
|
||||
material_slots: Union[None, Dict[str, Any], ClusterPrinterMaterialStationSlot] = None,
|
||||
material_slots: List[Union[None, Dict[str, Any], ClusterPrinterMaterialStationSlot]] = None,
|
||||
**kwargs) -> None:
|
||||
self.status = status
|
||||
self.supported = supported
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue