sanitylib: pacify pylint

According to our compliance checks, we have 'useless-suppression'
and 'unused-import' on our hands:

W0611: Unused CLoader imported from yaml as Loader
W0611: Unused Loader imported from yaml
I0021: Useless suppression of 'unsubscriptable-object'

Signed-off-by: Martí Bolívar <marti.bolivar@nordicsemi.no>
This commit is contained in:
Martí Bolívar 2020-07-08 14:55:14 -07:00 committed by Anas Nashif
commit d8698cbdc6

View file

@ -34,11 +34,10 @@ import yaml
try: try:
# Use the C LibYAML parser if available, rather than the Python parser. # Use the C LibYAML parser if available, rather than the Python parser.
# It's much faster. # It's much faster.
from yaml import CLoader as Loader
from yaml import CSafeLoader as SafeLoader from yaml import CSafeLoader as SafeLoader
from yaml import CDumper as Dumper from yaml import CDumper as Dumper
except ImportError: except ImportError:
from yaml import Loader, SafeLoader, Dumper from yaml import SafeLoader, Dumper
try: try:
import serial import serial
@ -1470,9 +1469,6 @@ Tests should reference the category and subsystem with a dot as a separator.
'offset': 0} 'offset': 0}
with contextlib.closing(mmap.mmap(**mmap_args)) as main_c: with contextlib.closing(mmap.mmap(**mmap_args)) as main_c:
# contextlib makes pylint think main_c isn't subscriptable
# pylint: disable=unsubscriptable-object
suite_regex_match = suite_regex.search(main_c) suite_regex_match = suite_regex.search(main_c)
if not suite_regex_match: if not suite_regex_match:
# can't find ztest_test_suite, maybe a client, because # can't find ztest_test_suite, maybe a client, because