materials_compendium.utils.Material.get_comment

Material.get_comment()[source]

Get the comments associated with the material.

Returns:

A list of comments.

Return type:

list

Example

datum = Datum(Comment=[“Comment 1”, “Comment 2”]) material = Material(datum) print(material.get_comment()) # Output: [“Comment 1”, “Comment 2”]