From 52863ee9ff61cc3520f7dd8c0beaf96dade5449e Mon Sep 17 00:00:00 2001 From: Bo-Chun Louis Chen <louistw@uab.edu> Date: Tue, 7 Jun 2022 15:45:52 -0500 Subject: [PATCH] Disable pylint unused-argument --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index a55284b..600fb36 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,6 +3,6 @@ line-length = 79 target-version = ['py36'] preview = true [tool.pylint.main] -disable = ["invalid-name", "logging-fstring-interpolation"] +disable = ["invalid-name", "logging-fstring-interpolation", "unused-argument"] [tool.pylint.format] max-line-length = 79 -- GitLab