From 796e64c9f56e630ec25d587f6dbdfe4a47567981 Mon Sep 17 00:00:00 2001 From: Samuel Gaist <samuel.gaist@idiap.ch> Date: Mon, 22 Apr 2024 14:00:03 +0200 Subject: [PATCH] fix(ruff): set to line length back to 88 as used originally That's the default for ruff but it makes it clearer that this is what we want. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 0919b4c..a6844e7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -130,7 +130,7 @@ include = [ packages = ["src/clapper"] [tool.ruff] -line-length = 80 +line-length = 88 target-version = "py310" [tool.ruff.format] -- GitLab