Skip to content

Commit 97a3f96

Browse files
committed
fix compatibility with supertype issue
1 parent 8f83436 commit 97a3f96

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/core/series.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4249,7 +4249,7 @@ def replace(
42494249
Series.memory_usage: Memory usage of Series.""",
42504250
)
42514251
@Appender(NDFrame.info.__doc__)
4252-
def info(self, verbose=None, buf=None, memory_usage=None, null_counts=None) -> None:
4252+
def info(self, verbose=None, buf=None, columns=None, memory_usage=None, null_counts=None) -> None:
42534253
return super().info(verbose, buf, None, memory_usage, null_counts)
42544254

42554255
@Appender(generic._shared_docs["shift"] % _shared_doc_kwargs)

0 commit comments

Comments
 (0)