mirror of
https://github.com/astral-sh/ruff.git
synced 2025-10-01 06:11:43 +00:00

Co-authored-by: Micha Reiser <micha@reiser.io> Co-authored-by: Alex Waygood <alex.waygood@gmail.com>
9 lines
257 B
Python
9 lines
257 B
Python
import mod.CONST as const
|
|
from mod import CONSTANT as constant
|
|
from mod import ANOTHER_CONSTANT as another_constant
|
|
import mod.CON as c
|
|
from mod import C as c
|
|
|
|
# These are all OK:
|
|
import django.db.models.Q as Query1
|
|
from django.db.models import Q as Query2
|