From 1d8f44f6b36fd329bb652048c3ec448c7cb7e955 Mon Sep 17 00:00:00 2001 From: Bo-Chun Louis Chen <louistw@uab.edu> Date: Tue, 7 Jun 2022 14:40:26 -0500 Subject: [PATCH] Disable pylint logging-fstring-interpolation According to the comment here: https://github.com/PyCQA/pylint/issues/2354#issuecomment-414526879 I think the f-string could be used in logging. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 313cf5e..a55284b 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"] +disable = ["invalid-name", "logging-fstring-interpolation"] [tool.pylint.format] max-line-length = 79 -- GitLab