Skip to content

Commit

Permalink
fix print lines for python3
Browse files Browse the repository at this point in the history
  • Loading branch information
edoapra committed Oct 9, 2023
1 parent dd76c40 commit 666b6b4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions QA/tests/pyqa3/pyqa3.nw
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ end

python
print ("value check:")
print ("INT = "), INT
print ("DBL = "), DBL
print ("CHAR = "), CHAR
print ("LOGICAL = "), LOGICAL
print ("INT = ", INT)
print ("DBL = ", DBL)
print ("CHAR = ", CHAR)
print ("LOGICAL = ", LOGICAL)

rtdb_put("test_int2", 22)
print (' Done 1')
Expand Down

0 comments on commit 666b6b4

Please sign in to comment.