mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-07 23:17:32 -06:00
19 lines
789 B
Python
19 lines
789 B
Python
# Copyright (c) 2019 Ultimaker B.V.
|
|
# Cura is released under the terms of the LGPLv3 or higher.
|
|
from ..BaseModel import BaseModel
|
|
|
|
|
|
class ClusterPrintJobImpediment(BaseModel):
|
|
"""Class representing the reasons that prevent this job from being printed on the associated printer"""
|
|
|
|
def __init__(self, translation_key: str, severity: int, **kwargs) -> None:
|
|
"""Creates a new print job constraint.
|
|
|
|
:param translation_key: A string indicating a reason the print cannot be printed,
|
|
such as 'does_not_fit_in_build_volume'
|
|
:param severity: A number indicating the severity of the problem, with higher being more severe
|
|
"""
|
|
|
|
self.translation_key = translation_key
|
|
self.severity = severity
|
|
super().__init__(**kwargs)
|