Closed
Description
Current problem
I think it would be nice if Pylint could check if there is same import name from different packages.
For example, in the code below, import order is fine, but the 'Path' imports overlap, causing errors somewhere.
from pathlib import Path
from FastAPI import Path
Desired solution
overlapping imports found. Path
Additional context
No response