mirror of
https://github.com/mtshiba/pylyzer.git
synced 2025-07-07 17:45:00 +00:00
9 lines
95 B
Python
9 lines
95 B
Python
# W0188: unused value
|
|
|
|
1 # Warn
|
|
|
|
def f(): return "a"
|
|
f() # Warn
|
|
|
|
def f(): return None
|
|
f() # OK
|