Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 2 additions & 4 deletions novem/cli/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,10 +103,8 @@ def refresh_config(args: Dict[str, Any]) -> None:

# get novem username
assert "username" in curconf
prefill = curconf["username"]

username = input_with_prefill(" \u2022 novem username: ", prefill)
# username = "abc"
username = curconf["username"]
print(f" \u2022 novem username: {username}")

# get novem password
password = getpass.getpass(" \u2022 novem password: ")
Expand Down