fix string concats left over by black

This commit is contained in:
David Lord 2019-06-01 09:22:20 -07:00
parent 3db4697959
commit 53c893b646
No known key found for this signature in database
GPG key ID: 7A1C87E3F5BC42A8
10 changed files with 17 additions and 18 deletions

View file

@ -156,7 +156,7 @@ class FlaskClient(Client):
"""
if self.cookie_jar is None:
raise RuntimeError(
"Session transactions only make sense " "with cookies enabled."
"Session transactions only make sense with cookies enabled."
)
app = self.application
environ_overrides = kwargs.setdefault("environ_overrides", {})
@ -167,7 +167,7 @@ class FlaskClient(Client):
sess = session_interface.open_session(app, c.request)
if sess is None:
raise RuntimeError(
"Session backend did not open a session. " "Check the configuration"
"Session backend did not open a session. Check the configuration"
)
# Since we have to open a new request context for the session