Files
RustPython/extra_tests/snippets/import_target.py
Rex Ledesma 4e2e0b41c6 chore: add ruff format --check (#5774)
* chore: add `ruff format --check`

* fix tests
2025-05-12 14:20:01 +09:00

13 lines
148 B
Python

# This is used by import.py; the two should be modified in concert
X = "123"
Y = "abc"
def func():
return X
def other_func():
return Y