https://github.com/opencv/cvat
Raw File
Tip revision: 4ce78ff1c9d8835750e13b117ba293fba800dd02 authored by Maxim Zhiltsov on 14 September 2022, 16:48:40 UTC
Ask password later in CLI to print subcommand help
Tip revision: 4ce78ff
.bandit
[bandit]
# B101 : assert_used
# B102 : exec_used
# B320 : xml_bad_etree
# B404 : import_subprocess
# B406 : import_xml_sax
# B410 : import_lxml
skips: B101,B102,B320,B404,B406,B410
exclude: **/tests/**,tests
back to top