diff options
author | 2023-06-21 13:14:39 +0200 | |
---|---|---|
committer | 2023-06-21 13:14:39 +0200 | |
commit | d836a23df4684d6381f3a408b1349808d0504f16 (patch) | |
tree | 738aa96faa06d3822a7c0f8e8840f581112c4e70 /pyproject.toml | |
parent | Bump ruff from 0.0.272 to 0.0.274 (diff) |
Update code for new linter rules
Ignore RUF012, which suggests to add typing.ClassVar to "mutable" class
variables (in our case, it complained about the ordering attribute of
the `Meta` class within models) - annotating this would be a bit noisy.
Diffstat (limited to 'pyproject.toml')
-rw-r--r-- | pyproject.toml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pyproject.toml b/pyproject.toml index 56d1f9bb..2f830df0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -53,7 +53,7 @@ ignore = [ "E731", "DJ001", "DJ008", "RET504", - "RUF005", + "RUF005", "RUF012", "S311", "SIM102", "SIM108", ] |