Revision 560c17f9b067120c34b880cd223611402f2faf72 authored by Maxim Zhiltsov on 05 December 2023, 11:42:03 UTC, committed by GitHub on 05 December 2023, 11:42:03 UTC
- Fixed a 500 error for supervisors and workers when they tried to list settings in an org context
- Added possible 403 and 404 errors for the task filter
1 parent e025b20
Raw File
.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