Skip to content

Commit 1d25477

Browse files
committed
removed alternative signature added in LArray.as_table() docstring.
1 parent 86b5251 commit 1d25477

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

larray/core/array.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2293,19 +2293,17 @@ def __contains__(self, key):
22932293
return any(key in axis for axis in self.axes)
22942294

22952295
def as_table(self, maxlines=None, edgeitems=None, light=False, wide=True, value_name='value'):
2296-
r"""as_table(maxlines=None, edgeitems=5, light=False, wide=True, value_name='value')
2297-
2296+
r"""
22982297
Generator. Returns next line of the table representing an array.
22992298
23002299
Parameters
23012300
----------
23022301
maxlines : int, optional
2303-
Maximum number of lines to show.
2302+
Maximum number of lines to show. Default behavior shows all lines.
23042303
edgeitems : int, optional
23052304
If number of lines to display is greater than `maxlines`,
23062305
only the first and last `edgeitems` lines are displayed.
23072306
Only active if `maxlines` is not None.
2308-
Equals to 5 by default.
23092307
light: bool, optional
23102308
Whether or not printing the array in the same way as a pandas DataFrame with a MultiIndex
23112309
(see example below). Defaults to False.

0 commit comments

Comments
 (0)