Skip to content

Commit

Permalink
[FIX] missing-import-error: add xlrd to whitelist (#379)
Browse files Browse the repository at this point in the history
The `xlrd` package is in Odoo's requirements since v10 [1].

[1] odoo/odoo@0ac303d12ff0
  • Loading branch information
luisg123v committed Jun 16, 2022
1 parent a65fdf5 commit 1c91fce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pylint_odoo/checkers/modules_odoo.py
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@
'pydot', 'pyparsing', 'pytz', 'qrcode', 'reportlab',
'requests', 'serial', 'simplejson', 'six', 'suds',
'unittest2', 'urllib3', 'usb', 'vatnumber', 'vobject', 'werkzeug',
'wsgiref', 'xlsxwriter', 'xlwt', 'yaml',
'wsgiref', 'xlrd', 'xlsxwriter', 'xlwt', 'yaml',
# OpenUpgrade migration
'openupgradelib'
]
Expand Down

0 comments on commit 1c91fce

Please sign in to comment.