mirror of
https://github.com/astral-sh/ruff.git
synced 2025-09-29 13:25:17 +00:00
11 lines
116 B
Python
11 lines
116 B
Python
from mymodule import *
|
|
|
|
|
|
def print_name():
|
|
print(name)
|
|
|
|
|
|
def print_name(name):
|
|
print(name)
|
|
|
|
__all__ = ['a']
|