From b7d807db01f2a80ce23f3f5a9dbcd089edfb0bd5 Mon Sep 17 00:00:00 2001 From: Philip Eisenlohr Date: Wed, 25 May 2022 09:45:37 -0400 Subject: [PATCH] re-added default arguments that got lost in last commit --- python/damask/_table.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/python/damask/_table.py b/python/damask/_table.py index dc2c6f961..78d7ddcb9 100644 --- a/python/damask/_table.py +++ b/python/damask/_table.py @@ -12,8 +12,8 @@ class Table: """Manipulate multi-dimensional spreadsheet-like data.""" def __init__(self, - shapes: dict, - data: np.ndarray, + shapes: dict = {}, + data: np.ndarray = None, comments: Union[str, Iterable[str]] = None): """ New spreadsheet.