Skip to content

Commit

Permalink
update version
Browse files Browse the repository at this point in the history
  • Loading branch information
AlphaBeta1906 committed Aug 14, 2021
1 parent 6320caf commit 43430fd
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
7 changes: 4 additions & 3 deletions pyGinit/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -54,6 +54,7 @@ def init():
answers.get("gitginore_template"),
)


@pyginit.command()
def remote():
"""create empty github repository"""
Expand All @@ -68,6 +69,7 @@ def remote():
command="remote",
)


@pyginit.command(options_metavar="<options>")
@click.argument("token", metavar="<github_token>")
@click.argument("username", metavar="<github_username>")
Expand All @@ -81,7 +83,6 @@ def set_auth(token, username):
print(e)



@pyginit.command()
def status():
"""search github repo"""
Expand Down
1 change: 0 additions & 1 deletion pyGinit/repo.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"))

Expand Down

0 comments on commit 43430fd

Please sign in to comment.