You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add a precommit rule that validates there is no usage in pd.api.types.
For example:
Wrong: pd.api.types.is_number(1)
Right:
from pandas.api.types import is_number
is_number(1)
The text was updated successfully, but these errors were encountered:
nofarm3
changed the title
Add a precommit rule that validates there is no usage in pd.api.types.<method>
STYLE: Add a precommit rule that validates there is no usage in pd.api.types.<method>
Jan 20, 2021
Followup to issue #39203
Add a precommit rule that validates there is no usage in pd.api.types.
For example:
Wrong:
pd.api.types.is_number(1)
Right:
The text was updated successfully, but these errors were encountered: