From 49d6cebe1eac7c583671a6a6bd935f001e08c950 Mon Sep 17 00:00:00 2001 From: Ondrej Tuma Date: Mon, 24 Jul 2023 08:22:12 +0200 Subject: [PATCH] linter-fixes --- ruff.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/ruff.toml b/ruff.toml index 78ed1461..d840633b 100644 --- a/ruff.toml +++ b/ruff.toml @@ -131,5 +131,6 @@ ignore = [ "PIE810", # Call `startswith` once with a `tuple` "S607", # Starting a process with a partial executable path "RUF005", # Consider `[sys.executable, "-m", "prusa.link", "restart", *argv]` instead of concatenation + "RUF015", # Prefer `next(iter(screen.lines()))` over single element slice "S104", # Possible binding to all interfaces¸ ]