From 2f07d88bc7fbd8ed12b7deca259822030adf7ea3 Mon Sep 17 00:00:00 2001 From: Philip Eisenlohr Date: Mon, 24 Jan 2022 21:09:13 +0000 Subject: [PATCH] clarified set of option values --- python/damask/_table.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/python/damask/_table.py b/python/damask/_table.py index 68ed869c3..fed309439 100644 --- a/python/damask/_table.py +++ b/python/damask/_table.py @@ -108,7 +108,7 @@ class Table: ---------- what : str or list Labels to expand. - how : str + how : {'uniform, 'shapes', 'linear'} Mode of labeling. 'uniform' ==> v v v 'shapes' ==> 3:v v v @@ -137,7 +137,7 @@ class Table: Parameters ---------- - how : str + how : {'uniform, 'shapes', 'linear'} Mode of labeling. 'uniform' ==> v v v 'shapes' ==> 3:v v v @@ -155,10 +155,10 @@ class Table: def isclose(self, - other: 'Table', - rtol: float = 1e-5, - atol: float = 1e-8, - equal_nan: bool = True) -> np.ndarray: + other: 'Table', + rtol: float = 1e-5, + atol: float = 1e-8, + equal_nan: bool = True) -> np.ndarray: """ Report where values are approximately equal to corresponding ones of other Table.