Open ericgj opened 3 months ago
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.
if type(data) is dict
if type(data) is list
isinstance
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.