Skip to content

Commit

Permalink
Update comments in .ruff.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
AA-Turner committed Dec 1, 2024
1 parent 19dfc3f commit e739368
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .ruff.toml
Original file line number Diff line number Diff line change
Expand Up @@ -245,11 +245,11 @@ select = [
# "RUF027", # Possible f-string without an `f` prefix
"RUF028", # This suppression comment is invalid because {}
"RUF029", # Function `{name}` is declared `async`, but doesn't `await` or use `async` features.
"RUF030", # `print()` expression in `assert` statement is likely unintentional
"RUF031", # Use parentheses for tuples in subscripts.
"RUF030", # `print()` call in `assert` statement is likely unintentional
"RUF031", # Use parentheses for tuples in subscripts
"RUF032", # `Decimal()` called with float literal argument
"RUF033", # `__post_init__` method with argument defaults
"RUF034", # Useless if-else condition
"RUF034", # Useless `if`-`else` condition
# "RUF100", # Unused `noqa` directive
"RUF101", # `{original}` is a redirect to `{target}`
"RUF200", # Failed to parse pyproject.toml: {message}
Expand Down

0 comments on commit e739368

Please sign in to comment.