Contributors mailing list archives

contributors@odoo-community.org

Browse archives

Avatar

How to skip pylint check

by
TAKOBI s.r.l., Lorenzo Battistini.
- 11/07/2019 09:25:21
Hi all,

sometimes we need to avoid some lines of code being checked by pylint.
Example: we use self._cr.commit() on purpose and we want to avoid E8102 error.

I tried with
self._cr.commit()  # noqa
but it seems it is still failing:

So, how can I skip lint checks to make travis green?

Thanks!

Follow-Ups