https://github.com/opencv/cvat
Raw File
Tip revision: fd2575c7fba5a449232e574a1a46de7f34591c87 authored by Nikita Manovich on 09 June 2023, 17:36:30 UTC
Merge pull request #6278 from opencv/release-2.4.6
Tip revision: fd2575c
.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