From 6c8a0f6d10132d6812369ce41f8b03b9b86429d0 Mon Sep 17 00:00:00 2001 From: Lance Edgar Date: Sun, 31 Aug 2025 22:00:14 -0500 Subject: [PATCH] fix: fix 'implicit-str-concat' for pylint --- .pylintrc | 1 - src/wuttaweb/forms/base.py | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.pylintrc b/.pylintrc index a156d6a..a3e84bf 100644 --- a/.pylintrc +++ b/.pylintrc @@ -14,7 +14,6 @@ disable=fixme, consider-using-set-comprehension, dangerous-default-value, duplicate-code, - implicit-str-concat, import-outside-toplevel, isinstance-second-argument-not-valid-type, keyword-arg-before-vararg, diff --git a/src/wuttaweb/forms/base.py b/src/wuttaweb/forms/base.py index 848b9f0..12f8742 100644 --- a/src/wuttaweb/forms/base.py +++ b/src/wuttaweb/forms/base.py @@ -599,7 +599,7 @@ class Form: # pylint: disable=too-many-instance-attributes if grid.key in self.grid_vue_context: log.warning( - "grid data with key '%s' already registered, " "but will be replaced", + "grid data with key '%s' already registered, but will be replaced", grid.key, )