@@ -656,15 +656,21 @@ def test_invalid_custom_regions_not_included(self):
656656 region_one = lldb .SBMemoryRegionInfo ()
657657 process .GetMemoryRegions ().GetMemoryRegionAtIndex (0 , region_one )
658658 options .AddMemoryRegionToSave (region_one )
659- empty_region = lldb .SBMemoryRegionInfo ("empty region" , 0x0 , 0x0 , 3 , True , False )
659+ empty_region = lldb .SBMemoryRegionInfo (
660+ "empty region" , 0x0 , 0x0 , 3 , True , False
661+ )
660662 options .AddMemoryRegionToSave (empty_region )
661- region_with_no_permissions = lldb .SBMemoryRegionInfo ("no permissions" , 0x2AAA , 0x2BBB , 0 , True , False )
663+ region_with_no_permissions = lldb .SBMemoryRegionInfo (
664+ "no permissions" , 0x2AAA , 0x2BBB , 0 , True , False
665+ )
662666 options .AddMemoryRegionToSave (region_with_no_permissions )
663667 error = process .SaveCore (options )
664668 self .assertTrue (error .Success (), error .GetCString ())
665669 core_target = self .dbg .CreateTarget (None )
666670 core_process = core_target .LoadCore (output_file )
667- self .assertNotIn (region_with_no_permissions , core_process .GetMemoryRegions ())
671+ self .assertNotIn (
672+ region_with_no_permissions , core_process .GetMemoryRegions ()
673+ )
668674 self .assertNotIn (empty_region , core_process .GetMemoryRegions ())
669675 finally :
670676 if os .path .isfile (output_file ):
0 commit comments