pylyzer/docs/errors/warns.md

10 lines
176 B
Markdown

# Pylyzer-specific warnings
## W0188: Used value
```python
def f(x): return x
f(1) # W0188: UnusedWarning: the evaluation result of the expression (: {1, }) is not used
```