We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b56d579 commit 87adf71Copy full SHA for 87adf71
pandas/io/pytables.py
@@ -601,15 +601,12 @@ def keys(self) -> List[str]:
601
list
602
List of ABSOLUTE path-names (e.g. have the leading '/').
603
"""
604
- # if kind == "pandas":
605
objects = [n._v_pathname for n in self.groups()]
606
if objects:
607
return objects
608
609
self._check_if_open()
610
- return [
611
- n._v_pathname for n in self._handle.walk_nodes("/", classname="Table")
612
- ]
+ return [n._v_pathname for n in self._handle.walk_nodes("/", classname="Table")]
613
614
def __iter__(self):
615
return iter(self.keys())
0 commit comments