We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5dd240c commit 517c768Copy full SHA for 517c768
index.ts
@@ -347,7 +347,7 @@ export class PythonShell extends EventEmitter{
347
* @returns {PythonShell} The same instance for chaining calls
348
*/
349
send(message:string|Object) {
350
- if (!this.stdin) throw new Error("stdin not open for writting");
+ if (!this.stdin) throw new Error("stdin not open for writing");
351
let data = this.formatter ? this.formatter(message) : message;
352
if (this.mode !== 'binary') data += newline;
353
this.stdin.write(data);
0 commit comments