diff --git a/.pylintrc b/.pylintrc index e6d4cca..56aaac9 100644 --- a/.pylintrc +++ b/.pylintrc @@ -12,4 +12,3 @@ disable=fixme, consider-using-f-string, consider-using-set-comprehension, empty-docstring, - implicit-str-concat, diff --git a/src/sideshow/web/views/common.py b/src/sideshow/web/views/common.py index a5da3bd..ad52738 100644 --- a/src/sideshow/web/views/common.py +++ b/src/sideshow/web/views/common.py @@ -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)