Skip to content

Commit

Permalink
- fix(__main__.py): change default value of --verify-ssl option to False
Browse files Browse the repository at this point in the history
  • Loading branch information
alan890104 committed Sep 16, 2023
1 parent 0760217 commit 9ad976b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion decodex/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def cli():

@cli.command(help="download tags and signatures for a chain")
@click.argument("chain", default="ethereum", type=click.Choice(["ethereum"]))
@click.option("--verify-ssl", is_flag=True, help="Verify SSL", default=True)
@click.option("--verify-ssl", is_flag=True, help="Verify SSL", default=False)
def download(chain: str, verify_ssl: bool):
chain = chain.lower()
parents = DECODEX_DIR.joinpath(chain)
Expand Down

0 comments on commit 9ad976b

Please sign in to comment.