Skip to content

Commit ce4dba1

Browse files
Correct the order of the keywords in the docstring
1 parent d3f4f04 commit ce4dba1

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
@@ -591,14 +591,14 @@ def keys(self, kind="pandas") -> List[str]:
591591
When kind equals 'table' return Tables
592592
Otherwise fail with a ValueError
593593
594-
Raises
595-
------
596-
raises ValueError if kind has an illegal value
597-
598594
Returns
599595
-------
600596
list
601597
List of ABSOLUTE path-names (e.g. have the leading '/').
598+
599+
Raises
600+
------
601+
raises ValueError if kind has an illegal value
602602
"""
603603
if kind == "pandas":
604604
return [n._v_pathname for n in self.groups()]

0 commit comments

Comments
 (0)