mirror of
https://github.com/astral-sh/ruff.git
synced 2025-10-01 06:11:43 +00:00
10 lines
259 B
Python
10 lines
259 B
Python
import mod.CaMel as CM
|
|
from mod import CamelCase as CC
|
|
|
|
|
|
# OK depending on configured import convention
|
|
import xml.etree.ElementTree as ET
|
|
from xml.etree import ElementTree as ET
|
|
|
|
# Always an error (relative import)
|
|
from ..xml.eltree import ElementTree as ET
|