Skip to content

Commit 9f62062

Browse files
authored
Merge pull request #30 from cparmet/fix-docstring
Fix a docstring
2 parents a84b3d8 + c84deb4 commit 9f62062

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas_checks/DataFrameChecks.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ def assert_data(
6666
"""Tests whether Dataframe meets condition. Optionally raises an exception. Does not modify the DataFrame itself.
6767
6868
Args:
69-
condition: Assertion criteria in the form of a lambda function, such as `lambda df: df.shape[0]>10` or
69+
condition: Assertion criteria in the form of a lambda function, such as `lambda df: df.shape[0]>10`.
7070
subset: Optional, which column or columns to check the condition against. Applied after fn. Subsetting can also be done within the `condition`, such as `lambda df: df['column_name'].sum()>10`
7171
pass_message: Message to display if the condition passes.
7272
fail_message: Message to display if the condition fails.

0 commit comments

Comments
 (0)