1 2 3 4 5 6 7 8 9
|
test/data/err_108.py:11:5 [FURB108]: Replace `x == y or x == z` with `x in (y, z)`
test/data/err_108.py:12:5 [FURB108]: Replace `x == y or x == z` with `x in (y, z)`
test/data/err_108.py:13:5 [FURB108]: Replace `x == y or x == z` with `x in (y, z)`
test/data/err_108.py:13:19 [FURB108]: Replace `x == y or x == z` with `x in (y, z)`
test/data/err_108.py:14:5 [FURB108]: Replace `x == y or x == z` with `x in (y, z)`
test/data/err_108.py:17:5 [FURB108]: Replace `x == y or x == z` with `x in (y, z)`
test/data/err_108.py:21:5 [FURB108]: Replace `x == y or z == x` with `x in (y, z)`
test/data/err_108.py:22:5 [FURB108]: Replace `x == y or z == y` with `y in (x, z)`
test/data/err_108.py:23:5 [FURB108]: Replace `x == y or y == z` with `y in (x, z)`
|