Searched full:pylint (Results 1 – 25 of 42) sorted by relevance
12
/Zephyr-Core-3.4.0/samples/modules/tflite-micro/magic_wand/train/ |
D | data_prepare_test.py | 34 def setUp(self): # pylint: disable=g-missing-super-call 35 …self.file = "./%s/output_%s_%s.txt" % (folders[0], folders[0], names[0]) # pylint: disable=unde… 37 …prepare_original_data(folders[0], names[0], self.data, self.file) # pylint: disable=undefined-v… 43 for idx, line in enumerate(lines): # pylint: disable=unused-variable 50 self.assertEqual(self.data[0]["name"], names[0]) # pylint: disable=undefined-variable 57 for idx, data in enumerate(self.data): # pylint: disable=unused-variable
|
D | data_load.py | 16 # pylint: disable=g-bad-import-order 50 def get_data_file(self, data_path, data_type): # pylint: disable=no-self-use 56 for idx, line in enumerate(lines): # pylint: disable=unused-variable 66 def pad(self, data, seq_length, dim): # pylint: disable=no-self-use 88 …for idx, (data, label) in enumerate(zip(data, label)): # pylint: disable=redefined-argument-fro…
|
D | data_augmentation.py | 16 # pylint: disable=g-bad-import-order 47 …for idx, (data, label) in enumerate(zip(original_data, original_label)): # pylint: disable=unus… 52 for num in range(5): # pylint: disable=unused-variable 59 for i in range(len(tmp_data)): # pylint: disable=consider-using-enumerate
|
D | train.py | 16 # pylint: disable=g-bad-import-order 26 import os # pylint: disable=duplicate-code 29 import numpy as np # pylint: disable=duplicate-code 112 model_path, # pylint: disable=unused-argument 113 train_len, # pylint: disable=unused-argument 134 for data, label in test_data: # pylint: disable=unused-variable
|
D | data_augmentation_test.py | 16 # pylint: disable=g-bad-import-order 53 for i in range(len(original_label)): # pylint: disable=consider-using-enumerate
|
D | data_load_test.py | 16 # pylint: disable=g-bad-import-order 32 def setUp(self): # pylint: disable=g-missing-super-call 77 for feature, label in self.loader.train_data: # pylint: disable=unused-variable
|
D | data_split.py | 44 for idx, line in enumerate(lines): # pylint: disable=unused-variable 57 for idx, item in enumerate(data): # pylint: disable=unused-variable
|
D | data_split_test.py | 31 def setUp(self): # pylint: disable=g-missing-super-call 48 for idx, line in enumerate(lines): # pylint: disable=unused-variable
|
D | data_split_person_test.py | 30 def setUp(self): # pylint: disable=g-missing-super-call
|
D | data_prepare.py | 55 for idx, line in enumerate(lines): # pylint: disable=unused-variable 145 for idx, item in enumerate(data_to_write): # pylint: disable=unused-variable
|
D | data_split_person.py | 48 for idx, data in enumerate(whole_data): # pylint: disable=unused-variable
|
D | train_test.py | 35 def setUp(self): # pylint: disable=g-missing-super-call
|
/Zephyr-Core-3.4.0/scripts/pylint/checkers/ |
D | argparse-checker.py | 6 from pylint.checkers import BaseChecker 51 # This is called from pylint, hence PyLinter not being declared in this file 52 # pylint: disable=undefined-variable
|
/Zephyr-Core-3.4.0/scripts/ |
D | requirements-compliance.txt | 8 pylint
|
/Zephyr-Core-3.4.0/scripts/ci/ |
D | guideline_check.py | 54 # pylint does not like the 'sh' library 55 # pylint: disable=too-many-function-args,unexpected-keyword-arg
|
D | pylintrc | 4 # pylint configuration for the PyLint check in check_compliance.py. 6 # To run pylint manually with this configuration from the Zephyr repo, do
|
D | check_compliance.py | 459 # pylint: disable=undefined-variable 482 # pylint: disable=undefined-variable 714 already covered by e.g. checkpatch.pl and pylint. 856 class PyLint(ComplianceTest): class 858 Runs pylint on all .py files, with a limited set of checks enabled. The 861 name = "Pylint" 862 doc = "See https://www.pylint.org/ for more details" 866 # Path to pylint configuration file 870 # Path to additional pylint check scripts 872 "../pylint/checkers")) [all …]
|
/Zephyr-Core-3.4.0/ |
D | .gitignore | 80 Pylint.txt
|
/Zephyr-Core-3.4.0/scripts/coredump/coredump_parser/ |
D | elf_parser.py | 56 … if type(section) is not elftools.elf.sections.Section: # pylint: disable=unidiomatic-typecheck
|
/Zephyr-Core-3.4.0/scripts/pylib/twister/ |
D | scl.py | 6 # pylint: disable=unused-import
|
/Zephyr-Core-3.4.0/scripts/footprint/ |
D | fpdiff.py | 53 # pylint: disable=undefined-loop-variable
|
/Zephyr-Core-3.4.0/.github/workflows/ |
D | compliance.yml | 30 pip3 install python-magic lxml junitparser gitlint pylint pykwalify yamllint
|
/Zephyr-Core-3.4.0/scripts/west_commands/runners/ |
D | uf2.py | 13 import psutil # pylint: disable=unused-import
|
/Zephyr-Core-3.4.0/doc/ |
D | conf.py | 90 if tags.has("svgconvert"): # pylint: disable=undefined-variable 150 is_release = tags.has("release") # pylint: disable=undefined-variable 152 if tags.has("publish"): # pylint: disable=undefined-variable
|
/Zephyr-Core-3.4.0/scripts/build/ |
D | gen_kobject_placeholders.py | 84 … if type(one_sect) is not elftools.elf.sections.Section: # pylint: disable=unidiomatic-typecheck
|
12