Skip to content

Commit

Permalink
Update variable names in Python scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
JosephTLyons committed Oct 21, 2024
1 parent 1589956 commit 66ead29
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions test/python/parse_float.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import sys

value = sys.argv[1]
parsed_value = float(value)
print(parsed_value, end="")
parsed_float = float(value)
print(parsed_float, end="")
4 changes: 2 additions & 2 deletions test/python/parse_int.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import sys

value = sys.argv[1]
parsed_value = int(value)
print(parsed_value, end="")
parsed_int = int(value)
print(parsed_int, end="")

0 comments on commit 66ead29

Please sign in to comment.