From 7fcca2307187011b1202dd87a27c384d456d2ed6 Mon Sep 17 00:00:00 2001 From: Lance Edgar Date: Sun, 31 Aug 2025 21:27:30 -0500 Subject: [PATCH] test: couple more tweaks for pylint + tox --- .pylintrc | 1 + src/wuttaweb/cli/webapp.py | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.pylintrc b/.pylintrc index 1454690..2627ec0 100644 --- a/.pylintrc +++ b/.pylintrc @@ -15,6 +15,7 @@ disable=fixme, consider-using-generator, consider-using-get, consider-using-set-comprehension, + cyclic-import, dangerous-default-value, deprecated-method, duplicate-code, diff --git a/src/wuttaweb/cli/webapp.py b/src/wuttaweb/cli/webapp.py index 6ec377c..f319d3a 100644 --- a/src/wuttaweb/cli/webapp.py +++ b/src/wuttaweb/cli/webapp.py @@ -2,7 +2,7 @@ ################################################################################ # # wuttaweb -- Web App for Wutta Framework -# Copyright © 2024 Lance Edgar +# Copyright © 2024-2025 Lance Edgar # # This file is part of Wutta Framework. # @@ -63,7 +63,7 @@ def webapp( elif runner == "uvicorn": - import uvicorn + import uvicorn # pylint: disable=import-error # need service details from config spec = config.require(f"{config.appname}.web.app.spec")