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

This commit is contained in:
Lance Edgar 2025-09-01 14:57:23 -05:00
parent c01f9395f0
commit 54602f605d
2 changed files with 1 additions and 2 deletions

View file

@ -12,4 +12,3 @@ disable=fixme,
consider-using-f-string,
consider-using-set-comprehension,
empty-docstring,
implicit-str-concat,

View file

@ -47,7 +47,7 @@ class CommonView(base.CommonView):
admin = model.Role(name="Order Admin")
admin.notes = (
"this role was auto-created; " "you can change or remove it as needed."
"this role was auto-created; you can change or remove it as needed."
)
session.add(admin)