From 9dc726ff53bf43e8e33f95d263e2e33bdbfe0524 Mon Sep 17 00:00:00 2001 From: Martin Diehl Date: Sun, 8 Dec 2019 09:17:57 +0100 Subject: [PATCH] polishing --- python/damask/geom.py | 3 +++ python/damask/table.py | 1 - 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/python/damask/geom.py b/python/damask/geom.py index 32ea2ed89..63ce20115 100644 --- a/python/damask/geom.py +++ b/python/damask/geom.py @@ -205,6 +205,9 @@ class Geom(): else: self.homogenization = homogenization + @property + def grid(self): + return self.get_grid() def get_microstructure(self): """Return the microstructure representation.""" diff --git a/python/damask/table.py b/python/damask/table.py index 6181fdb1f..d063599ab 100644 --- a/python/damask/table.py +++ b/python/damask/table.py @@ -97,7 +97,6 @@ class Table(): @property def labels(self): - """Return the labels of all columns.""" return list(self.shapes.keys())