mirror of
https://github.com/zulip/zulip.git
synced 2025-10-23 04:52:12 +00:00
ruff: Fix UP032 Use f-string instead of format
call.
Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
committed by
Tim Abbott
parent
7746e11486
commit
bca5564c1e
@@ -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
|
||||
)
|
||||
"""
|
||||
)
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user