From 6e0881d284f1f5c2557c1ebae8f73ecbc616803f Mon Sep 17 00:00:00 2001 From: Alejandra <90076947+alejsdev@users.noreply.github.com> Date: Tue, 9 Sep 2025 14:01:31 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20Add=20T201=20rule=20to=20ruff=20?= =?UTF-8?q?linting=20configuration=20to=20disallow=20print=20statements=20?= =?UTF-8?q?(#1865)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- backend/pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/backend/pyproject.toml b/backend/pyproject.toml index d1fbd06..d0f1c89 100644 --- a/backend/pyproject.toml +++ b/backend/pyproject.toml @@ -55,6 +55,7 @@ select = [ "C4", # flake8-comprehensions "UP", # pyupgrade "ARG001", # unused arguments in functions + "T201", # print statements are not allowed ] ignore = [ "E501", # line too long, handled by black