From 831eafca34328f4ddf66f388058fdc4969f7102b Mon Sep 17 00:00:00 2001 From: Karim shoair Date: Sat, 13 Sep 2025 03:07:15 +0300 Subject: [PATCH] ops: Update ruff pre-commit rules --- ruff.toml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/ruff.toml b/ruff.toml index a579697..405614a 100644 --- a/ruff.toml +++ b/ruff.toml @@ -10,8 +10,10 @@ exclude = [ "benchmarks.py", ] -# Assume Python 3.9 -target-version = "py39" +# Assume Python 3.10 +target-version = "py310" +# Allow lines to be as long as 120. +line-length = 120 [lint] select = ["E", "F", "W"]