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

Signed-off-by: Anders Kaseorg <anders@zulip.com>
(cherry picked from commit bca5564c1e)
This commit is contained in:
Anders Kaseorg
2023-07-21 15:35:07 -07:00
committed by Alex Vandiver
parent 920c73a64e
commit 3325f2ef06
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
)
"""
)