From 43430fd2b5a65298929d2325b6dfde8bf9f68df6 Mon Sep 17 00:00:00 2001 From: fariz Date: Sat, 14 Aug 2021 07:39:58 +0700 Subject: [PATCH] update version --- pyGinit/main.py | 7 ++++--- pyGinit/repo.py | 1 - 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/pyGinit/main.py b/pyGinit/main.py index 9cf1efa..13d88e9 100644 --- a/pyGinit/main.py +++ b/pyGinit/main.py @@ -28,12 +28,12 @@ @click.group() -@click.version_option("0.3.0", help="Show version") +@click.version_option("0.2.5", help="Show version") def pyginit(): """pyGinit a simple cli automation tools to initalize both local and github remote repository - version : 0.3.0 + version : 0.2.5 """ pass @@ -54,6 +54,7 @@ def init(): answers.get("gitginore_template"), ) + @pyginit.command() def remote(): """create empty github repository""" @@ -68,6 +69,7 @@ def remote(): command="remote", ) + @pyginit.command(options_metavar="") @click.argument("token", metavar="") @click.argument("username", metavar="") @@ -81,7 +83,6 @@ def set_auth(token, username): print(e) - @pyginit.command() def status(): """search github repo""" diff --git a/pyGinit/repo.py b/pyGinit/repo.py index 3c0b9d9..a3c9282 100644 --- a/pyGinit/repo.py +++ b/pyGinit/repo.py @@ -100,7 +100,6 @@ def create_repo(*args, command="all"): ) = args private = False if private == "private" else True - print(private == "private") try: parser = config_obj.read(path.join(Path.home(), ".pyGinitconfig.ini"))