Skip to content

Commit

Permalink
Fix: file casing (#201)
Browse files Browse the repository at this point in the history
  • Loading branch information
Almenon authored Nov 15, 2024
1 parent 7f7a793 commit 29e48ff
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "arepl-backend",
"version": "3.0.1",
"description": "JS interface to python evaluator for AREPL",
"main": "PythonExecutors.js",
"main": "pythonExecutors.js",
"scripts": {
"compile": "tsc -watch -p ./",
"compileOnce": "tsc",
Expand Down
2 changes: 1 addition & 1 deletion pythonExecutor.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
// The module 'assert' provides assertion methods from node
import * as assert from 'assert'

import { PythonExecutor, PythonState } from './PythonExecutor'
import { PythonExecutor, PythonState } from './pythonExecutor'
import { EOL } from 'os';

function isEmpty(obj) {
Expand Down
File renamed without changes.
4 changes: 2 additions & 2 deletions pythonExecutors.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { Options, PythonShell } from "python-shell";
import { ExecArgs, PythonExecutor, PythonResult, PythonState } from "./PythonExecutor";
import { ExecArgs, PythonExecutor, PythonResult, PythonState } from "./pythonExecutor";

export * from './PythonExecutor'
export * from './pythonExecutor'

/**
* Starts multiple python executors for running user code.
Expand Down

0 comments on commit 29e48ff

Please sign in to comment.