displays git url when you do git command with no arguments

This commit is contained in:
Raatty 2018-05-23 22:41:34 +12:00 committed by GitHub
parent 437da83d86
commit f40c5eae0e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -43,7 +43,8 @@ class Git:
@commands.group(case_insensitive=True)
async def git(self, ctx):
"""Run help git for more info"""
pass
if ctx.invoked_subcommand is None:
ctx.send('https://github.com/Annihilator708/Sebi-Machine/')
@git.command()
async def pull(self, ctx):