Skip to content

Commit ee5ba92

Browse files
committed
linting (pre-commit throwing problems)
1 parent 97a3f96 commit ee5ba92

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

pandas/core/series.py

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

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

0 commit comments

Comments
 (0)