Skip to content

Commit

Permalink
Ran black to reformat the code
Browse files Browse the repository at this point in the history
  • Loading branch information
erocarrera committed Apr 10, 2022
1 parent 7ad0260 commit 9addb08
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pefile.py
Original file line number Diff line number Diff line change
Expand Up @@ -6972,7 +6972,7 @@ def set_data_bytes(self, offset: int, data: bytes):
if not isinstance(self.__data__, bytearray):
self.__data__ = bytearray(self.__data__)

self.__data__[offset:offset + len(data)] = data
self.__data__[offset : offset + len(data)] = data

def merge_modified_section_data(self):
"""Update the PE image content with any individual section data that has been
Expand Down

0 comments on commit 9addb08

Please sign in to comment.