Skip to content

Commit

Permalink
fix: Docusaurus '{' parsing error
Browse files Browse the repository at this point in the history
  • Loading branch information
emil-litwiniec committed Apr 19, 2024
1 parent c8e2744 commit 32b93a4
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -49,15 +49,15 @@ Rules that are ignored:

- `S101` - Use of assert detected

- `A003` - Class attribute {name} is shadowing a python builtin
- `A003` - Class attribute \{name} is shadowing a python builtin

- `S105` - Possible hardcoded password: "{}"
- `S105` - Possible hardcoded password: "\{}"

- `SIM105` - Use contextlib.suppress({exception}) instead of try-except-pass
- `SIM105` - Use contextlib.suppress(\{exception}) instead of try-except-pass

- `A002` - Argument {name} is shadowing a python builtin
- `A002` - Argument \{name} is shadowing a python builtin

- `B904` - Within an except clause, raise exceptions with raise ... from err or raise ... from None to distinguish them from errors in exception handling

- `PLR0913` - Too many arguments to function call ({c_args} > {max_args})
:::
- `PLR0913` - Too many arguments to function call (\{c_args} > \{max_args})
:::

0 comments on commit 32b93a4

Please sign in to comment.