From bb4b2890925038b78bb4ec3f1cf49f9ca3666a92 Mon Sep 17 00:00:00 2001 From: ff137 Date: Thu, 9 May 2024 21:43:03 +0300 Subject: [PATCH] :art: fix ruff warnings Signed-off-by: ff137 --- pyproject.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index efc00afc60..c4b57c42c1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -101,9 +101,9 @@ indy = [ aca-py = "aries_cloudagent.__main__:script_main" [tool.ruff] -select = ["B006", "C", "D", "E", "F"] +lint.select = ["B006", "C", "D", "E", "F"] -ignore = [ +lint.ignore = [ # Google Python Doc Style "D203", "D204", "D213", "D215", "D400", "D401", "D404", "D406", "D407", "D408", "D409", "D413", @@ -117,7 +117,7 @@ include = ["aries_cloudagent/**/*.py"] line-length = 90 -[tool.ruff.per-file-ignores] +[tool.ruff.lint.per-file-ignores] "**/{tests}/*" = ["B006", "D", "E501", "F841"] [tool.pytest.ini_options]