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:
parent
7f251a7d08
commit
d8698cbdc6
1 changed files with 1 additions and 5 deletions
|
@ -34,11 +34,10 @@ import yaml
|
|||
try:
|
||||
# Use the C LibYAML parser if available, rather than the Python parser.
|
||||
# It's much faster.
|
||||
from yaml import CLoader as Loader
|
||||
from yaml import CSafeLoader as SafeLoader
|
||||
from yaml import CDumper as Dumper
|
||||
except ImportError:
|
||||
from yaml import Loader, SafeLoader, Dumper
|
||||
from yaml import SafeLoader, Dumper
|
||||
|
||||
try:
|
||||
import serial
|
||||
|
@ -1470,9 +1469,6 @@ Tests should reference the category and subsystem with a dot as a separator.
|
|||
'offset': 0}
|
||||
|
||||
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)
|
||||
if not suite_regex_match:
|
||||
# can't find ztest_test_suite, maybe a client, because
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue