From 147097f92ac59b8e27a292a2008be020f8e42c04 Mon Sep 17 00:00:00 2001 From: Lilah Abigail Ruth Date: Wed, 10 Feb 2021 03:06:03 -0500 Subject: [PATCH] removing an unneeded format string when there's no interpolation --- mypaas/server/_init.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mypaas/server/_init.py b/mypaas/server/_init.py index 231750d..62ca6d3 100644 --- a/mypaas/server/_init.py +++ b/mypaas/server/_init.py @@ -83,7 +83,7 @@ def _collect_info_for_config(): print("The dashboard will be protected with a username and password.") print() username = input(" username: ") - pw = getpass.getpass(f" password: ") + pw = getpass.getpass(" password: ") pwhash = _get_password_hash(pw) print()