Skip to content

Commit

Permalink
Merge pull request #31 from cparmet/fix-docstring-argname
Browse files Browse the repository at this point in the history
Fix argument name in docstrings
  • Loading branch information
cparmet authored Jun 27, 2024
2 parents 9f62062 + f98d76f commit 221c5eb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pandas_checks/DataFrameChecks.py
Original file line number Diff line number Diff line change
Expand Up @@ -581,7 +581,7 @@ def assert_type(
"""Tests whether Dataframe or subset of columns meets type assumption. Optionally raises an exception. Does not modify the DataFrame itself.
Args:
type: The required variable type
dtype: The required variable type
subset: Optional, which column or columns to check the condition against. `
pass_message: Message to display if the condition passes.
fail_message: Message to display if the condition fails.
Expand Down
2 changes: 1 addition & 1 deletion pandas_checks/SeriesChecks.py
Original file line number Diff line number Diff line change
Expand Up @@ -545,7 +545,7 @@ def assert_type(
"""Tests whether Series meets type assumption. Optionally raises an exception. Does not modify the Series itself.
Args:
type: The required variable type
dtype: The required variable type
pass_message: Message to display if the condition passes.
fail_message: Message to display if the condition fails.
Expand Down

0 comments on commit 221c5eb

Please sign in to comment.