Reformat whitespace
authorEli Bendersky <eliben@gmail.com>
Mon, 23 Mar 2020 13:02:22 +0000 (06:02 -0700)
committerEli Bendersky <eliben@gmail.com>
Mon, 23 Mar 2020 13:02:22 +0000 (06:02 -0700)
elftools/dwarf/dwarfinfo.py

index ce1bce88f63a5dce5ac5c5c247c168b3cb800487..70ebe04f60261f83479a72632c6f48c67ee50134 100644 (file)
@@ -227,8 +227,8 @@ class DWARFInfo(object):
             the DWARF data, or None if the section doesn't exist
         """
         if self.debug_aranges_sec:
-            return ARanges(self.debug_aranges_sec.stream, 
-                self.debug_aranges_sec.size, 
+            return ARanges(self.debug_aranges_sec.stream,
+                self.debug_aranges_sec.size,
                 self.structs)
         else:
             return None
@@ -285,9 +285,9 @@ class DWARFInfo(object):
             self.structs.Dwarf_uint32(''), self.debug_info_sec.stream, offset)
         dwarf_format = 64 if initial_length == 0xFFFFFFFF else 32
 
-        
+
         # Temporary structs for parsing the header
-        # The structs for the rest of the CU depend on the header data. 
+        # The structs for the rest of the CU depend on the header data.
         #
         cu_structs = DWARFStructs(
             little_endian=self.config.little_endian,
@@ -341,4 +341,3 @@ class DWARFInfo(object):
             structs=structs,
             program_start_offset=self.debug_line_sec.stream.tell(),
             program_end_offset=end_offset)
-