List of keywords searched
Minimal code snippets
test1.py
import xml.etree.ElementTree as Et
test2.py
import xml.etree.ElementTree as ET
Invoked commands
ruff check test1.py test2.py
Current ruff settings
select = ["ICN001", "N817"]
Current ruff version
ruff 0.6.0
Description
It seems like N817 wants me to import it as Et while ICN001 wants me to import it as ET. Perhaps it is ok that rules conflict in ruff. If so I guess this is not a bug.
List of keywords searched
Minimal code snippets
test1.pytest2.pyInvoked commands
Current ruff settings
Current ruff version
ruff 0.6.0Description
It seems like
N817wants me to import it asEtwhileICN001wants me to import it asET. Perhaps it is ok that rules conflict in ruff. If so I guess this is not a bug.