Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGhostkeeper <rubend@tutanota.com>2018-06-07 16:49:23 +0300
committerGhostkeeper <rubend@tutanota.com>2018-06-07 16:49:23 +0300
commitefe4d3734dfe10856999ed03f42b86aaaa25ac04 (patch)
treef17cbb19a9417aac6f4f11bf2bf3306192ad3ae8 /plugins/XmlMaterialProfile/XmlMaterialValidator.py
parentd063741d7aada884648c491f24eddd67f5ad6cd9 (diff)
Add documentation
Done during issue CURA-5034.
Diffstat (limited to 'plugins/XmlMaterialProfile/XmlMaterialValidator.py')
-rw-r--r--plugins/XmlMaterialProfile/XmlMaterialValidator.py11
1 files changed, 6 insertions, 5 deletions
diff --git a/plugins/XmlMaterialProfile/XmlMaterialValidator.py b/plugins/XmlMaterialProfile/XmlMaterialValidator.py
index f11c8bea4b..a23022854b 100644
--- a/plugins/XmlMaterialProfile/XmlMaterialValidator.py
+++ b/plugins/XmlMaterialProfile/XmlMaterialValidator.py
@@ -1,12 +1,13 @@
-# Copyright (c) 2017 Ultimaker B.V.
+# Copyright (c) 2018 Ultimaker B.V.
# Cura is released under the terms of the LGPLv3 or higher.
+from typing import Any, Dict
-
-class XmlMaterialValidator():
-
+## Makes sure that the required metadata is present for a material.
+class XmlMaterialValidator:
+ ## Makes sure that the required metadata is present for a material.
@classmethod
- def validateMaterialMetaData(cls, validation_metadata):
+ def validateMaterialMetaData(cls, validation_metadata: Dict[str, Any]):
if validation_metadata.get("GUID") is None:
return "Missing GUID"