Skip to content

Commit

Permalink
Fix PR suggestions
Browse files Browse the repository at this point in the history
  • Loading branch information
Uxio0 committed Jan 29, 2025
1 parent 16eded0 commit 2b4bb09
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/safe_cli/safe_creator.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ def get_epilog_msg():

def setup_argument_parser():
parser = argparse.ArgumentParser(description=get_epilog_msg())
# parser = argparse.ArgumentParser(usage=get_usage_msg())
parser.add_argument(
"-v",
"--version",
Expand Down Expand Up @@ -243,7 +242,7 @@ def yes_or_no(prompt: str) -> bool:
sys.exit(1)

if yes_or_no(
f"Safe will be deployed on {expected_safe_address}, looks good?"
f"Safe will be deployed on {expected_safe_address}, would you like to proceed?"
):
ethereum_tx_sent = proxy_factory.deploy_proxy_contract_with_nonce(
account, safe_contract_address, safe_creation_tx_data, salt_nonce
Expand Down

0 comments on commit 2b4bb09

Please sign in to comment.