Skip to content

Commit c4e48f0

Browse files
authored
Fix PEP8 line length violation
Rewrap line 2525 of frame.py (the docstring of `DataFrame.memory_usage`) to conform with PEP8 line length.
1 parent d2e9dab commit c4e48f0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pandas/core/frame.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -2522,8 +2522,8 @@ def memory_usage(self, index=True, deep=False):
25222522
----------
25232523
index : bool, default True
25242524
Specifies whether to include the memory usage of the DataFrame's
2525-
index in returned Series. If ``index=True``, the memory usage of the
2526-
index is the first item in the output.
2525+
index in returned Series. If ``index=True``, the memory usage of
2526+
the index is the first item in the output.
25272527
deep : bool, default False
25282528
If True, introspect the data deeply by interrogating
25292529
`object` dtypes for system-level memory consumption, and include

0 commit comments

Comments
 (0)