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>
7 lines
200 B
Python
7 lines
200 B
Python
import mod.Camel as CAMEL
|
|
from mod import CamelCase as CAMELCASE
|
|
from mod import AnotherCamelCase as ANOTHER_CAMELCASE
|
|
|
|
# These are all OK:
|
|
import mod.AppleFruit as A
|
|
from mod import BananaFruit as B
|