Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
Hurricane996 committed Oct 24, 2023
1 parent bf261e1 commit cb5a811
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tools/splat_ext/pm_sbn.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,13 @@ def align(misaligned: int):
return (misaligned + 0xF) & (~0xF)



def convert_fstring_to_proper_endianness(le: bool, fstring: str) -> str:
if le:
return fstring.replace(">","<")
return fstring.replace(">", "<")
else:
return fstring


class SBN:
files: List["SBNFile"]
unknown_data: bytes
Expand Down

0 comments on commit cb5a811

Please sign in to comment.