Skip to content

Commit 885b461

Browse files
committed
Fix linting issues
1 parent 7fbc377 commit 885b461

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

bot/code_coverage_bot/cli.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,9 @@ def setup_cli(parameters=True):
2222
if parameters:
2323
parser.add_argument("--repository", default=os.environ.get("REPOSITORY"))
2424

25-
parser.add_argument("--task-group-id", default=os.environ.get("TESTS_TASK_GROUP_ID"))
25+
parser.add_argument(
26+
"--task-group-id", default=os.environ.get("TESTS_TASK_GROUP_ID")
27+
)
2628

2729
parser.add_argument("--revision", default=os.environ.get("REVISION"))
2830

bot/tests/test_hook.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,10 @@
1717
{
1818
"firedBy": "triggerHook",
1919
"taskId": "xxx",
20-
"payload": {"taskName": "Custom task name", "coverageIngestionTaskGroupId": "yyyy"},
20+
"payload": {
21+
"taskName": "Custom task name",
22+
"coverageIngestionTaskGroupId": "yyyy",
23+
},
2124
},
2225
),
2326
# Cron trigger

0 commit comments

Comments
 (0)