Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

style(python): Sort and group imports in python/grass #3961

Closed
wants to merge 2 commits into from

style(pydispatch): Sort and group imports

e42bec1
Select commit
Loading
Failed to load commit list.
Closed

style(python): Sort and group imports in python/grass #3961

style(pydispatch): Sort and group imports
e42bec1
Select commit
Loading
Failed to load commit list.
GitHub Advanced Security / Bandit succeeded Jul 1, 2024 in 4s

2 new alerts

New alerts in code changed by this pull request

  • 2 notes

See annotations below for details.

View all branch alerts.

Annotations

Check notice on line 17 in python/grass/gunittest/reporters.py

See this annotation in the file changed.

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

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.

Check notice on line 20 in python/grass/gunittest/reporters.py

See this annotation in the file changed.

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

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.