pylyzer/docs/source/warns.md
Shunsuke Shibayama f13c6f7e37 Create warns.md
2022-12-23 23:01:21 +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