Fix style issues on master using Black

This commit is contained in:
Daniel Pope 2019-05-31 11:57:28 +01:00
parent 2c68f86336
commit a5ff3cd01b
4 changed files with 19 additions and 14 deletions

View file

@ -660,9 +660,11 @@ def show_server_banner(env, debug, app_import_path, eager_loading):
if env == "production":
click.secho(
' WARNING: This is a development server. '
'Do not use it in a production deployment.', fg='red')
click.secho(' Use a production WSGI server instead.', dim=True)
" WARNING: This is a development server. "
"Do not use it in a production deployment.",
fg="red",
)
click.secho(" Use a production WSGI server instead.", dim=True)
if debug is not None:
click.echo(" * Debug mode: {0}".format("on" if debug else "off"))