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
Using the ruff linter, but apparently derived from pycodestyle rule E721, I get lint errors for all lines like if type(data) is dict or if type(data) is list, telling me to use isinstance instead.
The text was updated successfully, but these errors were encountered:
Using the ruff linter, but apparently derived from pycodestyle rule E721, I get lint errors for all lines like
if type(data) is dict
orif type(data) is list
, telling me to useisinstance
instead.The text was updated successfully, but these errors were encountered: