Skip to content

Commit

Permalink
Ruff: Fix missing quote
Browse files Browse the repository at this point in the history
  • Loading branch information
C0rn3j committed Oct 19, 2024
1 parent b03d899 commit 6446bc2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ ignore = [
'W191', # We use tabs for indents, disabling this atrocious PEP 8 recommendation
'D206', # ^
'D400', # ends-in-period - We do not care if docstrings end with a period
'D415, # ends-in-punctuation - ^
'D415', # ends-in-punctuation - ^
'D401', # non-imperative-mood - Wants docstrings in imperative language but it's really not foolproof, disable
'ERA001', # Test for commented out code, but it has way too many false positives, so disable
'FBT001', # boolean-type-hint-positional-argument - Allow positional booleans in functions, it's not really that much of an issue
Expand Down

0 comments on commit 6446bc2

Please sign in to comment.