Add documentation

Done during issue CURA-5034.
This commit is contained in:
Ghostkeeper 2018-06-07 15:49:23 +02:00
parent d063741d7a
commit efe4d3734d
No known key found for this signature in database
GPG key ID: 5252B696FB5E7C7A

View file

@ -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"