Skip to content

Commit

Permalink
black
Browse files Browse the repository at this point in the history
  • Loading branch information
AngheloAlf committed Oct 11, 2024
1 parent 37419ea commit 0930e3d
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions src/splat/segtypes/common/code.py
Original file line number Diff line number Diff line change
Expand Up @@ -262,12 +262,8 @@ def parse_subsegments(self, segment_yaml) -> List[Segment]:

if sibling is not None:
# Make siblings reference between them
segment.siblings[sibling.get_linker_section_linksection()] = (
sibling
)
sibling.siblings[segment.get_linker_section_linksection()] = (
segment
)
segment.siblings[sibling.get_linker_section_linksection()] = sibling
sibling.siblings[segment.get_linker_section_linksection()] = segment

ret = self._insert_all_auto_sections(ret, base_segments, readonly_before)

Expand Down

0 comments on commit 0930e3d

Please sign in to comment.