style(python): Sort and group imports in python/grass #3961
2 new alerts
New alerts in code changed by this pull request
- 2 notes
See annotations below for details.
Annotations
Check notice on line 17 in python/grass/gunittest/reporters.py
Code scanning / Bandit
Using xml.etree.ElementTree to parse untrusted XML data is known to be vulnerable to XML attacks. Replace xml.etree.ElementTree with the equivalent defusedxml package, or make sure defusedxml.defuse_stdlib() is called. Note
Check notice on line 20 in python/grass/gunittest/reporters.py
Code scanning / Bandit
Using saxutils to parse untrusted XML data is known to be vulnerable to XML attacks. Replace saxutils with the equivalent defusedxml package, or make sure defusedxml.defuse_stdlib() is called. Note