Skip to content

Commit

Permalink
prettier docs
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexWaygood authored Jul 9, 2023
1 parent 2a7b12a commit 5c6bf2b
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions ERRORCODES.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,8 @@ The following warnings are currently emitted by default:
| Y056 | Do not call methods such as `.append()`, `.extend()` or `.remove()` on `__all__`. Different type checkers have varying levels of support for calling these methods on `__all__`. Use `+=` instead, which is known to be supported by all major type checkers.
| Y057 | Do not use `typing.ByteString` or `collections.abc.ByteString`. These types have unclear semantics, and are deprecated; use `typing_extensions.Buffer` or a union such as `bytes \| bytearray \| memoryview` instead. See [PEP 688](https://peps.python.org/pep-0688/) for more details.

## Warnings disabled by default

The following error codes are also provided, but are disabled by default due to
the risk of false-positive errors. To enable these error codes, use
`--extend-select={code1,code2,...}` on the command line or in your flake8
Expand Down

0 comments on commit 5c6bf2b

Please sign in to comment.