From 5cd230691bfb9cf8d1b01144624e4542c94451ec Mon Sep 17 00:00:00 2001 From: Jakub Kaczmarzyk Date: Wed, 10 Dec 2025 11:51:43 -0500 Subject: [PATCH] Change ruff line-length limit from 550 to 88 Ruff expects a line length between 1 and 320 (see error in VS Code Ruff extension below). This commit changes the line-length from 550 to 88, which is ruff's default. ``` [Error - 9:15:13 AM] Server process exited with code 0. 2025-12-10 09:15:13.904638000 ERROR Failed to parse /private/tmp/TotalSegmentator/pyproject.toml: TOML parse error at line 27, column 15 | 27 | line-length = 550 | ^^^ line-length must be between 1 and 320 (got 550) ``` --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 4fac63c605..80aef64c0a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -24,7 +24,7 @@ exclude = [ "venv", ] -line-length = 550 +line-length = 88 indent-width = 4 target-version = "py39" @@ -66,4 +66,4 @@ indent-style = "space" skip-magic-trailing-comma = false # Like Black, automatically detect the appropriate line ending. -line-ending = "auto" \ No newline at end of file +line-ending = "auto"