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 daaf51f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 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="")
text = sys.argv[1]
parsed_float = float(text)
print(parsed_float, end="")
6 changes: 3 additions & 3 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="")
text = sys.argv[1]
parsed_int = int(text)
print(parsed_int, end="")

0 comments on commit daaf51f

Please sign in to comment.