pylyzer 0.0.82

A static code analyzer & language server for Python
1
2
3
4
5
6
7
8
9
# 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
```