-
Notifications
You must be signed in to change notification settings - Fork 222
Closed
Labels
Description
After upgrading from "python-shell": "0.5.0" to "python-shell": "1.0.4", a previously working link that invokes a python script now returns the error "PythonShell is not a constructor"
The previously working code included:
...
const PythonShell = require("python-shell");
...
let pyshell = new PythonShell(script, options);
I noticed that this recent commit mentions constructors, but does not seem to change the API. There is also this change in the Readme.md
... but the examples below in same the Readme appear to be the same as before v1.0.4.
Should I configure something differently, or is this a potential bug?