-
-
Notifications
You must be signed in to change notification settings - Fork 18.4k
DOC: Add docstrings to fixtures in /series/methods/test_drop_duplicates.py #59265
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
DOC: Add docstrings to fixtures in /series/methods/test_drop_duplicates.py #59265
Conversation
27f6cfb
to
6427808
Compare
@@ -75,10 +75,22 @@ class TestSeriesDropDuplicates: | |||
params=["int_", "uint", "float64", "str_", "timedelta64[h]", "datetime64[D]"] | |||
) | |||
def dtype(self, request): | |||
""" | |||
Fixture that provides different data types for testing. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could you ensure these docstrings just fit on one line?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do you mean to write a shorter description or the same description in just one line?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Both I would say. These docstrings aren't entirely critical so it's best to be succinct.
Thanks @ivonastojanovic |
Add docstrings to fixtures in
/pandas/tests/series/methods/test_drop_duplicates.py
file.Partially addresses #19159