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
Currently Ruff changes the boolean if statement from the format if <field> == True: (or False). to the format if <field> is True:
This format doesn't work in Pandas, if <field> is True: always returns a False result.
Thank you!
The text was updated successfully, but these errors were encountered:
Currently Ruff changes the boolean if statement from the format
if <field> == True:
(or False). to the formatif <field> is True:
This format doesn't work in Pandas,
if <field> is True:
always returns a False result.Thank you!
The text was updated successfully, but these errors were encountered: