Skip to content

Commit

Permalink
Check for print() statements
Browse files Browse the repository at this point in the history
Removes `T201` from the list of excluded checks made by ruff. This means we capture errant `print()` statements when
making commits, although #749 should move us away from needing to use them.
  • Loading branch information
slackline committed Dec 8, 2023
1 parent 5a6a760 commit 56c3a8a
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 @@ -214,7 +214,7 @@ lint.ignore = [
"B905",
"E501",
"S101",
"T201"]
]
# Allow autofix for all enabled rules (when `--fix`) is provided.
lint.fixable = [
"A", # flake8-builtins
Expand Down

0 comments on commit 56c3a8a

Please sign in to comment.