From 1e9f8536151818f08af2ddd478f577f8461af31d Mon Sep 17 00:00:00 2001 From: Adeeb Shihadeh Date: Thu, 1 Aug 2024 23:17:16 -0700 Subject: [PATCH] fix ruff warnings --- pyproject.toml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 91ecc69237..d9eab2a37c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -18,8 +18,10 @@ explicit_package_bases=true # https://beta.ruff.rs/docs/configuration/#using-pyprojecttoml [tool.ruff] -select = ["E", "F", "W", "PIE", "C4", "ISC", "RUF100", "A"] -ignore = ["W292", "E741", "E402", "C408", "ISC003"] line-length = 160 target-version="py311" + +[tool.ruff.lint] +select = ["E", "F", "W", "PIE", "C4", "ISC", "RUF100", "A"] +ignore = ["W292", "E741", "E402", "C408", "ISC003"] flake8-implicit-str-concat.allow-multiline=false