run ruff formatting

This commit is contained in:
Vincent Emonet 2023-07-09 12:29:11 +02:00
commit bf18dcbcf9
22 changed files with 82 additions and 75 deletions

View file

@ -197,7 +197,7 @@ def main():
from waitress import serve
url_scheme = "https" if args.ssl else "http"
print("Running on %s://%s:%s%s" % (url_scheme, args.host, args.port, args.url_prefix))
print(f"Running on {url_scheme}://{args.host}:{args.port}{args.url_prefix}")
serve(
app,