mirror of
https://github.com/astral-sh/ruff.git
synced 2025-10-02 22:55:08 +00:00
5 lines
85 B
Python
5 lines
85 B
Python
if not user is None:
|
|
print(user.name)
|
|
|
|
if user is not None:
|
|
print(user.name)
|