From f9f2ba82337c393ec57fa1a5b82c402213dfbcc3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?T=C3=BCrkalp=20Burak=20KAYRANCIO=C4=9ELU?= Date: Sun, 13 Dec 2020 19:58:07 +0300 Subject: [PATCH] v1.0.3 --- ilkbyte_cli/main.py | 2 ++ setup.py | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/ilkbyte_cli/main.py b/ilkbyte_cli/main.py index fc49ba3..cc7e940 100644 --- a/ilkbyte_cli/main.py +++ b/ilkbyte_cli/main.py @@ -20,6 +20,8 @@ @app.command(name='config', ) def configure(secret_key: str = None, access_key: str = None, host: str = 'https://api.ilkbyte.com', config_file: str = global_config_file): + if secret_key is None and access_key is None: + typer.echo('You can get api credentials on https://www.ilkbyte.com/panel/account/settings') if secret_key is None: secret_key = typer.prompt('secret_key', hide_input=True) diff --git a/setup.py b/setup.py index 583e3a1..8b9384d 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ setuptools.setup( name="ilkbyte-cli", - version="1.0.2", + version="1.0.3", author="Türkalp Burak Kayrancıoğlu", author_email="bkayranci@gmail.com", description="Ilkbyte python CLI",