Skip to content

Commit 6bf6cc2

Browse files
committed
Fix styling
1 parent cc15057 commit 6bf6cc2

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

Diff for: backend/monitor/views.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import requests
2-
32
from django.conf import settings
43
from django.http.response import HttpResponse
54
from django.views.generic.base import View
@@ -37,7 +36,7 @@ def get(self, request):
3736
pulls.append(
3837
{
3938
"url": f"https://pr-{pull['number']}.{product_url}",
40-
"status": label["name"].split(":")[1]
39+
"status": label["name"].split(":")[1],
4140
}
4241
)
4342
break

0 commit comments

Comments
 (0)