@@ -1712,9 +1712,17 @@ def yaml2macho_core(self, yaml_path, obj_path, uuids=None):
17121712 if not yaml2macho_core_bin :
17131713 self .assertTrue (False , "No valid yaml2macho-core executable specified" )
17141714 if uuids != None :
1715- command = [yaml2macho_core_bin , "-i" , yaml_path , "-o" , obj_path , "-u" , uuids ]
1715+ command = [
1716+ yaml2macho_core_bin ,
1717+ "-i" ,
1718+ yaml_path ,
1719+ "-o" ,
1720+ obj_path ,
1721+ "-u" ,
1722+ uuids ,
1723+ ]
17161724 else :
1717- command = [yaml2macho_core_bin , "-i" , yaml_path , "-o" , obj_path ]
1725+ command = [yaml2macho_core_bin , "-i" , yaml_path , "-o" , obj_path ]
17181726 self .runBuildCommand (command )
17191727
17201728 def cleanup (self , dictionary = None ):
@@ -2279,7 +2287,9 @@ def completions_match(self, command, completions, max_completions=-1):
22792287 given list of completions"""
22802288 interp = self .dbg .GetCommandInterpreter ()
22812289 match_strings = lldb .SBStringList ()
2282- interp .HandleCompletion (command , len (command ), 0 , max_completions , match_strings )
2290+ interp .HandleCompletion (
2291+ command , len (command ), 0 , max_completions , match_strings
2292+ )
22832293 # match_strings is a 1-indexed list, so we have to slice...
22842294 self .assertCountEqual (
22852295 completions , list (match_strings )[1 :], "List of returned completion is wrong"
0 commit comments