Skip to content

Commit 4784c17

Browse files
Correct the order of the keywords in the docstring
1 parent 61f39f2 commit 4784c17

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

pandas/io/pytables.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -601,14 +601,14 @@ def keys(self, kind="pandas") -> List[str]:
601601
When kind equals 'table' return Tables
602602
Otherwise fail with a ValueError
603603
604-
Raises
605-
------
606-
raises ValueError if kind has an illegal value
607-
608604
Returns
609605
-------
610606
list
611607
List of ABSOLUTE path-names (e.g. have the leading '/').
608+
609+
Raises
610+
------
611+
raises ValueError if kind has an illegal value
612612
"""
613613
if kind == "pandas":
614614
return [n._v_pathname for n in self.groups()]

0 commit comments

Comments
 (0)