mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-12 17:27:51 -06:00
Used duoble quotes iso single quotes
This commit is contained in:
parent
352427e460
commit
bb5c0326de
1 changed files with 26 additions and 26 deletions
|
@ -2,32 +2,32 @@
|
||||||
# Cura is released under the terms of the LGPLv3 or higher.
|
# Cura is released under the terms of the LGPLv3 or higher.
|
||||||
from collections import namedtuple
|
from collections import namedtuple
|
||||||
|
|
||||||
ClusterMaterial = namedtuple('ClusterMaterial', [
|
ClusterMaterial = namedtuple("ClusterMaterial", [
|
||||||
'guid', # Type: str
|
"guid", # Type: str
|
||||||
'material', # Type: str
|
"material", # Type: str
|
||||||
'brand', # Type: str
|
"brand", # Type: str
|
||||||
'version', # Type: int
|
"version", # Type: int
|
||||||
'color', # Type: str
|
"color", # Type: str
|
||||||
'density' # Type: str
|
"density" # Type: str
|
||||||
])
|
])
|
||||||
|
|
||||||
LocalMaterial = namedtuple('LocalMaterial', [
|
LocalMaterial = namedtuple("LocalMaterial", [
|
||||||
'GUID', # Type: str
|
"GUID", # Type: str
|
||||||
'id', # Type: str
|
"id", # Type: str
|
||||||
'type', # Type: str
|
"type", # Type: str
|
||||||
'status', # Type: str
|
"status", # Type: str
|
||||||
'base_file', # Type: str
|
"base_file", # Type: str
|
||||||
'setting_version', # Type: int
|
"setting_version", # Type: int
|
||||||
'version', # Type: int
|
"version", # Type: int
|
||||||
'name', # Type: str
|
"name", # Type: str
|
||||||
'brand', # Type: str
|
"brand", # Type: str
|
||||||
'material', # Type: str
|
"material", # Type: str
|
||||||
'color_name', # Type: str
|
"color_name", # Type: str
|
||||||
'color_code', # Type: str
|
"color_code", # Type: str
|
||||||
'description', # Type: str
|
"description", # Type: str
|
||||||
'adhesion_info', # Type: str
|
"adhesion_info", # Type: str
|
||||||
'approximate_diameter', # Type: str
|
"approximate_diameter", # Type: str
|
||||||
'properties', # Type: str
|
"properties", # Type: str
|
||||||
'definition', # Type: str
|
"definition", # Type: str
|
||||||
'compatible' # Type: str
|
"compatible" # Type: str
|
||||||
])
|
])
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue