Add client to debug command

Makes it easier to debug things ;)
This commit is contained in:
MasterofJOKers 2022-10-25 23:36:55 +02:00
parent 68b1142cd7
commit 9bcd668171
1 changed files with 2 additions and 1 deletions

View File

@ -411,7 +411,8 @@ def label_edit(issue):
@issue.command()
@pass_issue
def debug(issue):
@pass_client
def debug(client, issue):
import IPython
IPython.embed()