Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
RetiredWizard authored Jun 17, 2021
1 parent 1146e59 commit 29227f2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion basicparser.py
Original file line number Diff line number Diff line change
Expand Up @@ -556,7 +556,8 @@ def __readstmt(self):
# Gather input from the DATA statement into the variables
for variable in variables:
left = variable
right = readlist.pop(0)
#right = readlist.pop(0)
right = self.__data_values.pop(0)

if left.endswith('$'):
# Python inserts quotes around input data
Expand Down

0 comments on commit 29227f2

Please sign in to comment.