Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
redsuns-chan committed Jul 29, 2022
2 parents cb5d366 + 1a2ac7a commit 887b180
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hex-to-float-covertor.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ def main(file_path: str, big_endian: bool):
f = open(file_path, "r")
file_size = stat(file_path).st_size
content = f.read(file_size)
content = content.replace(" ", "")
content = content.replace(" ", "").replace("\n", "").replace("\r", "")
converted = []
i = 0
while (i <= file_size):
Expand Down

0 comments on commit 887b180

Please sign in to comment.