pycharm-odoo
pycharm-odoo copied to clipboard
Improve type inference for field
https://github.com/odoo/odoo/blob/6db2847b476a21d6a96baddecb8231e47157ae0e/addons/product/models/product_product.py#L286

Currently, the plugin always infers type of Id as int, Char as str,... but in reality Id can be int | NewId | False, Char can be str | False,...