3
0
Fork 0

fix: fix 'implicit-str-concat' for pylint

This commit is contained in:
Lance Edgar 2025-08-31 22:00:14 -05:00
parent 50f8f99909
commit 6c8a0f6d10
2 changed files with 1 additions and 2 deletions

View file

@ -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,

View file

@ -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,
)