You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
When an invalid filepath is passed into df.readCSV, no errors are thrown and the request is never resolved. Are we supposed to check for validity of filepath ourselves before passing it into the function?
To Reproduce
Use the following code:
import * as dfd from "danfojs-node";
dfd.readCSV("invalid-filepath.csv")
.then((df) => {
// some code
})
.catch((error) => {
console.log(error)
})
Expected behavior
Should throw an error.
Additional context
Using danfojs-node v1.1.1
The text was updated successfully, but these errors were encountered:
Describe the bug
When an invalid filepath is passed into
df.readCSV
, no errors are thrown and the request is never resolved. Are we supposed to check for validity of filepath ourselves before passing it into the function?To Reproduce
Use the following code:
Expected behavior
Should throw an error.
Additional context
Using
danfojs-node
v1.1.1The text was updated successfully, but these errors were encountered: