commit | 50ad019441a7f19be0900c52816977d3623d7e20 | [log] [tgz] |
---|---|---|
author | Tom Rini <trini@konsulko.com> | Sat Dec 09 14:52:46 2023 -0500 |
committer | Tom Rini <trini@konsulko.com> | Sat Dec 09 15:59:13 2023 -0500 |
tree | 65a2dd26fe8f58c59916ddd0cd2ee477ac674646 | |
parent | 5e2bb9096a1e69ba0d2c0b4fb163f7a6f42f87b4 [diff] |
test/py: Disable error E0611 in two cases for pylint Recently pylint has started to complain about: No name 'fs_helper' in module 'tests' (no-name-in-module) Due to: from tests import fs_helper However, we have: test/py/tests/fs_helper.py And since we do not want to add a dummy test/py/tests/__init__.py to silence this warning we instead just disable it as needed. Cc: Simon Glass <sjg@chromium.org> Signed-off-by: Tom Rini <trini@konsulko.com>