From f8610f61e5e0adc25bf461dfdc8c01486885ca24 Mon Sep 17 00:00:00 2001 From: Bo-Chun Louis Chen <louistw@uab.edu> Date: Tue, 7 Jun 2022 17:37:07 -0500 Subject: [PATCH] Disable pylint import-error It's complain about mail_config which we add from different repo I think we can safely disable it --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 600fb36..7373290 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", "unused-argument"] +disable = ["invalid-name", "import-error", "logging-fstring-interpolation", "unused-argument"] [tool.pylint.format] max-line-length = 79 -- GitLab