Skip to content

Commit

Permalink
style: add spacing for syntax fix
Browse files Browse the repository at this point in the history
  • Loading branch information
thekaveman committed Nov 1, 2024
1 parent 6321893 commit f0c5bf8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion compiler_admin/commands/user/offboard.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ def offboard(args: Namespace) -> int:
return RESULT_FAILURE

if getattr(args, "force", False) is False:
cont = input(f"Offboard account {account} {' (assigning alias to '+ alias_account +')' if alias else ''}? (Y/n)")
cont = input(f"Offboard account {account} {' (assigning alias to ' + alias_account + ')' if alias else ''}? (Y/n)")
if not cont.lower().startswith("y"):
print("Aborting offboard.")
return RESULT_SUCCESS
Expand Down

0 comments on commit f0c5bf8

Please sign in to comment.