diff options
Diffstat (limited to 'lib/compilers/python.ts')
-rw-r--r-- | lib/compilers/python.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/compilers/python.ts b/lib/compilers/python.ts index 6bca3ce4f..0d9cc8dde 100644 --- a/lib/compilers/python.ts +++ b/lib/compilers/python.ts @@ -46,7 +46,7 @@ export class PythonCompiler extends BaseCompiler { resolvePathFromAppRoot('etc', 'scripts', 'disasms', 'dis_all.py'); } - override processAsm(result) { + override async processAsm(result) { const lineRe = /^\s{0,4}(\d+)(.*)/; const bytecodeLines = result.asm.split('\n'); |