ruff: Fix UP032 Use f-string instead of format call.

Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
Anders Kaseorg
2023-07-21 15:35:07 -07:00
committed by Tim Abbott
parent 7746e11486
commit bca5564c1e
2 changed files with 12 additions and 20 deletions

View File

@@ -288,19 +288,17 @@ Your remote Zulip dev server has been created!
def print_production_droplet_instructions(droplet_domain_name: str) -> None:
print(
"""
f"""
-----
Production droplet created successfully!
Connect to the server by running
ssh root@{}
ssh root@{droplet_domain_name}
-----
""".format(
droplet_domain_name
)
"""
)