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>
(cherry picked from commit bca5564c1e
)
This commit is contained in:
committed by
Alex Vandiver
parent
920c73a64e
commit
3325f2ef06
@@ -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