1
0
mirror of https://gitee.com/sui-feng-cb/AzurLaneAutoScript1 synced 2026-03-14 17:46:01 +08:00

Opt: AP preserve until reset

This commit is contained in:
sui-feng-cb
2025-09-03 13:59:51 +08:00
parent c3856ae101
commit 6b0383a169
137 changed files with 9982 additions and 13706 deletions

View File

@@ -1,9 +1,9 @@
import {alasPath, pythonPath} from '/@/config';
import logger from '/@/logger';
const {PythonShell} = require('python-shell');
const treeKill = require('tree-kill');
export class PyShell extends PythonShell {
constructor(script: string, args: Array<string> = []) {
const options = {
@@ -12,7 +12,6 @@ export class PyShell extends PythonShell {
pythonPath: pythonPath,
scriptPath: alasPath,
};
logger.info(`${pythonPath} ${script} ${args}`);
super(script, options);
}