diff --git a/README.md b/README.md index e55bca4ee9..bd73d6163d 100644 --- a/README.md +++ b/README.md @@ -721,7 +721,6 @@ For more, see [pycodestyle](https://pypi.org/project/pycodestyle/) on PyPI. | E701 | multiple-statements-on-one-line-colon | Multiple statements on one line (colon) | | | E702 | multiple-statements-on-one-line-semicolon | Multiple statements on one line (semicolon) | | | E703 | useless-semicolon | Statement ends with an unnecessary semicolon | | -| E704 | multiple-statements-on-one-line-def | Multiple statements on one line (def) | | | E711 | none-comparison | Comparison to `None` should be `cond is None` | 🛠 | | E712 | true-false-comparison | Comparison to `True` should be `cond is True` | 🛠 | | E713 | not-in-test | Test for membership should be `not in` | 🛠 | diff --git a/ruff.schema.json b/ruff.schema.json index c6cfbd44fc..eb695f0d59 100644 --- a/ruff.schema.json +++ b/ruff.schema.json @@ -1484,7 +1484,6 @@ "E701", "E702", "E703", - "E704", "E71", "E711", "E712",