mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-07 15:07:28 -06:00
Set the correct initial value in the feature budget attributes
They were defined as `Optional[int]` but started with the default value as `False`. CURA-8112
This commit is contained in:
parent
d4f249277e
commit
9d8286d90c
1 changed files with 3 additions and 3 deletions
|
@ -16,9 +16,9 @@ class DigitalFactoryFeatureBudgetResponse(BaseModel):
|
|||
library_can_use_status: Optional[bool] = False,
|
||||
library_can_use_tags: Optional[bool] = False,
|
||||
library_can_use_technical_requirements: Optional[bool] = False,
|
||||
library_max_organization_shared_projects: Optional[int] = False, # -1 means unlimited
|
||||
library_max_private_projects: Optional[int] = False, # -1 means unlimited
|
||||
library_max_team_shared_projects: Optional[int] = False, # -1 means unlimited
|
||||
library_max_organization_shared_projects: Optional[int] = None, # -1 means unlimited
|
||||
library_max_private_projects: Optional[int] = None, # -1 means unlimited
|
||||
library_max_team_shared_projects: Optional[int] = None, # -1 means unlimited
|
||||
**kwargs) -> None:
|
||||
|
||||
self.library_can_use_business_value = library_can_use_business_value
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue