Skip to content

Commit 16bb6aa

Browse files
Remove Optional from include parameter
1 parent 001be86 commit 16bb6aa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/io/pytables.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -580,7 +580,7 @@ def __enter__(self):
580580
def __exit__(self, exc_type, exc_value, traceback):
581581
self.close()
582582

583-
def keys(self, include: Optional[str] = "pandas") -> List[str]:
583+
def keys(self, include: str = "pandas") -> List[str]:
584584
"""
585585
Return a list of keys corresponding to objects stored in HDFStore.
586586

0 commit comments

Comments
 (0)