Skip to content

Commit

Permalink
removing an unneeded format string when there's no interpolation
Browse files Browse the repository at this point in the history
  • Loading branch information
LilahTovMoon authored and almarklein committed Feb 10, 2021
1 parent 146cc3f commit 147097f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mypaas/server/_init.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down

0 comments on commit 147097f

Please sign in to comment.