jsontypedef / json-typedef-codegen

A CLI tool that generates code from JSON Typedef schemas
https://jsontypedef.com/docs/tools/jtd-codegen
MIT License
154 stars 31 forks source link

Python: linter warning E721 on generated _to_json_data function #87

Open ericgj opened 1 month ago

ericgj commented 1 month 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.