re-added default arguments that got lost in last commit

This commit is contained in:
Philip Eisenlohr 2022-05-25 09:45:37 -04:00
parent 4746ac890b
commit b7d807db01
1 changed files with 2 additions and 2 deletions

View File

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