-
-
Notifications
You must be signed in to change notification settings - Fork 18.5k
pylint: disable invalid-repr-returned in Series.__repr__ #49025
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 1 commit
b606bdf
1c25eae
2a0e3fe
7bc42c8
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -1601,6 +1601,7 @@ def __repr__(self) -> str: | |||||||||||||||||||||||||
""" | ||||||||||||||||||||||||||
Return a string representation for a particular Series. | ||||||||||||||||||||||||||
""" | ||||||||||||||||||||||||||
# pylint: disable=invalid-repr-returned | ||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||||||||||||||||
repr_params = fmt.get_series_repr_params() | ||||||||||||||||||||||||||
return self.to_string(**repr_params) | ||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This seems to solve the issue. Should we go for this?
Suggested change
Also, Lines 1700 to 1709 in 2a0e3fe
|
||||||||||||||||||||||||||
|
||||||||||||||||||||||||||
|
Uh oh!
There was an error while loading. Please reload this page.