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):
3636
3737def nested_dict_to_namespaces (dic ):
3838 """Code for recursively converting dictionaries of dictionaries
39- into SimpleNamespaces instead.
39+ into SimpleNamespaces instead.
4040 """
4141
4242 def recurse (dic ):
@@ -199,8 +199,10 @@ def do_pulls(self):
199199 )
200200 pr_labels = [p .name for p in pull .get_labels ()]
201201 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+ )
204206 )
205207 print (msg )
206208 cnt += 1
You can’t perform that action at this time.
0 commit comments