File: err_171.txt

package info (click to toggle)
python-refurb 1.27.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 1,700 kB
  • sloc: python: 9,468; makefile: 40; sh: 6
file content (4 lines) | stat: -rw-r--r-- 286 bytes parent folder | download
1
2
3
4
test/data/err_171.py:3:5 [FURB171]: Replace `x in (y,)` with `x == y`
test/data/err_171.py:4:5 [FURB171]: Replace `x in [y]` with `x == y`
test/data/err_171.py:5:5 [FURB171]: Replace `x not in (y,)` with `x != y`
test/data/err_171.py:6:5 [FURB171]: Replace `x not in [y]` with `x != y`