From 5fa597afc0427d948d6ea9ef87557d13514a1b42 Mon Sep 17 00:00:00 2001 From: Marc Wrobel Date: Sat, 30 Dec 2023 11:53:29 +0100 Subject: [PATCH] Enable flake8-unused-arguments linting rules (#267) See https://docs.astral.sh/ruff/rules/#flake8-unused-arguments-arg. --- .ruff.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/.ruff.toml b/.ruff.toml index ab42bb65..b1947828 100644 --- a/.ruff.toml +++ b/.ruff.toml @@ -1,6 +1,7 @@ select = [ "A", # flake8-builtins "ANN", # flake8-annotations + "ARG", # flake8-unused-arguments "ASYNC", # flake8-async "B", # flake8-bugbear "BLE", # flake8-blind-except