tinyerp / odooly

Python library and CLI to interact with Odoo and OpenERP.
https://odooly.rtfd.io/
Other
60 stars 33 forks source link

fix __dir__ set union operator #21

Open paoloose opened 1 month ago

paoloose commented 1 month ago

When trying to use dir() over a model I got:

TypeError: unsupported operand type(s) for +: 'dict' and 'dict'

The fix is to use the | (OR) operator instead.