Skip to content

Commit

Permalink
fix: Replace pd with pandas in test_no_csv function
Browse files Browse the repository at this point in the history
  • Loading branch information
sergeyf committed Jan 13, 2025
1 parent 22fe9fc commit a2601d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/test_predict_command.py
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ def test_no_csv():
print("Running with args: %s" % full_args)
predict_command.run(full_args)

result = pd.read_csv(output_path)
result = pandas.read_csv(output_path)
print(result)

# Verify results
Expand Down

0 comments on commit a2601d4

Please sign in to comment.