pylyzer/docs/errors/warns.md
Shunsuke Shibayama 96b6db2904 doc: update docs
2024-08-18 14:22:42 +09:00

176 B

Pylyzer-specific warnings

W0188: Used value

def f(x): return x

f(1) # W0188: UnusedWarning: the evaluation result of the expression (: {1, }) is not used