https://github.com/opencv/cvat
Raw File
Tip revision: 438d4c09e266177e66f53e104135616d3a3192fc authored by Boris Sekachev on 22 February 2024, 19:26:06 UTC
Aborted
Tip revision: 438d4c0
.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