Skip to content

Commit d338b94

Browse files
jbrockmendeljreback
authored andcommitted
mypy fix (#29891)
1 parent d36bc70 commit d338b94

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

pandas/io/pytables.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -2641,7 +2641,9 @@ def write(self, **kwargs):
26412641
"cannot write on an abstract storer: sublcasses should implement"
26422642
)
26432643

2644-
def delete(self, where=None, start=None, stop=None, **kwargs):
2644+
def delete(
2645+
self, where=None, start: Optional[int] = None, stop: Optional[int] = None
2646+
):
26452647
"""
26462648
support fully deleting the node in its entirety (only) - where
26472649
specification must be None

0 commit comments

Comments
 (0)