File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ def link(url, name):
36
36
37
37
def nested_dict_to_namespaces (dic ):
38
38
"""Code for recursively converting dictionaries of dictionaries
39
- into SimpleNamespaces instead.
39
+ into SimpleNamespaces instead.
40
40
"""
41
41
42
42
def recurse (dic ):
@@ -199,8 +199,10 @@ def do_pulls(self):
199
199
)
200
200
pr_labels = [p .name for p in pull .get_labels ()]
201
201
if len (self .required_labels .intersection (pr_labels )) == 0 :
202
- msg += "\n \t Should have at least one label out of {} but found: {}" .format (
203
- ", " .join (self .required_labels ), ", " .join (pr_labels )
202
+ msg += (
203
+ "\n \t Should have at least one label out of {} but found: {}" .format (
204
+ ", " .join (self .required_labels ), ", " .join (pr_labels )
205
+ )
204
206
)
205
207
print (msg )
206
208
cnt += 1
You can’t perform that action at this time.
0 commit comments