From 7530d457a277cf55776389c88b7d6c1b8f95c932 Mon Sep 17 00:00:00 2001 From: Martin Diehl Date: Mon, 15 Aug 2022 08:04:02 +0200 Subject: [PATCH] documenting new behavior --- PRIVATE | 2 +- python/damask/_table.py | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/PRIVATE b/PRIVATE index cdca8ab0c..a8bd47ad5 160000 --- a/PRIVATE +++ b/PRIVATE @@ -1 +1 @@ -Subproject commit cdca8ab0c14b637c18279e0ea236caa148d15e5e +Subproject commit a8bd47ad55125b477e6c03277ee38ce3998a66ca diff --git a/python/damask/_table.py b/python/damask/_table.py index 6e7dcf146..356e73730 100644 --- a/python/damask/_table.py +++ b/python/damask/_table.py @@ -20,10 +20,10 @@ class Table: Parameters ---------- - shapes : dict with str:tuple pairs - Shapes of the data columns. + shapes : dict with str:tuple pairs, optional + Shapes of the data columns. Mandatory if 'data' is given. For instance, 'F':(3,3) for a deformation gradient, or 'r':(1,) for a scalar. - data : numpy.ndarray or pandas.DataFrame + data : numpy.ndarray or pandas.DataFrame, optional Data. Existing column labels of a pandas.DataFrame will be replaced. comments : str or iterable of str, optional Additional, human-readable information.