Module is imported more than once¶
ID: py/repeated-import
Kind: problem
Security severity:
Severity: recommendation
Precision: very-high
Tags:
- maintainability
- useless-code
Query suites:
- python-security-and-quality.qls
Click to see the query in the CodeQL repository
Importing the same module more than once has no effect as each module is only loaded once. It also confuses readers of the code.
Recommendation¶
Remove the second import.
Example¶
import module1
import module2
import module1 # Duplicate import
References¶
Python: import statement.