ruff/resources/test/fixtures/E714.py
2022-09-06 10:23:20 -04:00

5 lines
85 B
Python

if not user is None:
print(user.name)
if user is not None:
print(user.name)