зеркало из
1
0
Форкнуть 0
This commit is contained in:
Chelsea Boling 2021-08-17 22:04:27 -07:00 коммит произвёл GitHub
Родитель e271fd48a0
Коммит 39654aef78
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 9 добавлений и 9 удалений

18
cli.py
Просмотреть файл

@ -54,7 +54,7 @@ def serve(args):
s = Sync(
github,
jira.getProject(args.jira_project, args.jira_label),
direction=direction_str_to_num(args.direction)
direction=direction_str_to_num(args.direction),
)
server.run_server(s, args.secret, port=args.port)
@ -81,7 +81,10 @@ def sync(args):
github = ghlib.GitHub(args.gh_url, args.gh_token)
jira = jiralib.Jira(args.jira_url, args.jira_user, args.jira_token)
jira_project = jira.getProject(
args.jira_project, args.issue_end_state, args.issue_reopen_state, args.jira_label
args.jira_project,
args.issue_end_state,
args.issue_reopen_state,
args.jira_label,
)
repo_id = args.gh_org + "/" + args.gh_repo
@ -197,14 +200,11 @@ def main():
default=os.getenv("GH2JIRA_JIRA_TOKEN"),
)
credential_base.add_argument("--jira-project", help="JIRA project key")
credential_base.add_argument("--jira-label", help="JIRA bug label(s)")
credential_base.add_argument(
'--jira-label',
help='JIRA bug label(s)'
)
credential_base.add_argument(
'--secret',
help='Webhook secret. Alternatively, the GH2JIRA_SECRET may be set.',
default=os.getenv('GH2JIRA_SECRET')
"--secret",
help="Webhook secret. Alternatively, the GH2JIRA_SECRET may be set.",
default=os.getenv("GH2JIRA_SECRET"),
)
direction_base = argparse.ArgumentParser(add_help=False)