-
-
Notifications
You must be signed in to change notification settings - Fork 141
added datatypes for dropna subset as per pandas-dev#434 #498
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
Conversation
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.
You need to run poetry run poe style
on your code to properly format it.
@@ -2332,3 +2332,14 @@ def test_getsetitem_multiindex() -> None: | |||
multi_index: tuple[str, str] = ("Year 1", "Q1") | |||
budget.loc["project A", multi_index] = 4700 | |||
check(assert_type(budget.loc["project A", multi_index], Scalar), int) | |||
|
|||
def test_frame_dropna_subset() -> None: |
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.
Can you add a comment here referring to the Github issue, i.e., # GH 434
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.
added comment
|
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.
Thanks @shubhankarunhale
* added datatypes for dropna subset as per pandas-dev#434 * fixed failures * Formatted file using poe style
assert_type()
to assert the type of any return value