Skip to content

Commit

Permalink
Fix error in method name
Browse files Browse the repository at this point in the history
  • Loading branch information
raunakab committed Dec 19, 2024
1 parent 2b7d0da commit a268d8c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/tpcds.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ def parse_questions(questions: str) -> list[int]:
for item in items:
try:
num = int(item)
nums.push(str(num))
nums.append(str(num))
continue
except ValueError:
...
Expand Down

0 comments on commit a268d8c

Please sign in to comment.