Fix flake8 warnings and ignore VNE001 for Python samples (#18204)

* Ignore VNE001 for Python samples

* Add explanation

* Fix flake8 on wheel setup.py

* Fix onnx test reporting VNE001
This commit is contained in:
Jan Iwaszkiewicz
2023-06-23 17:06:02 +04:00
committed by GitHub
parent d00c7d30f9
commit a8ce60b651
3 changed files with 5 additions and 4 deletions
+2 -1
View File
@@ -3,9 +3,10 @@
# D100 - Missing docstring in public module
# D101 - Missing docstring in public class
# D103 - Missing docstring in public function
# VNE001 - Single letter variable names are not allowed
filename = *.py
max-line-length = 160
ignore = E203,D100,D101,D103
ignore = E203,D100,D101,D103,VNE001
max-parameters-amount = 8
show_source = True
docstring-convention = google