Change the metadata format (#457)

* Chnage the metadata format

* Add syntax highlighting

* have simple_clock example run from local build to test change

Co-authored-by: Fabio Pliger <fabio.pliger@gmail.com>
This commit is contained in:
woxtu
2022-06-02 03:49:41 +09:00
committed by GitHub
parent 698478ef95
commit 4b4ff08131
3 changed files with 20 additions and 19 deletions

View File

@@ -159,7 +159,9 @@ export class PyConfig extends BaseEvalElement {
autoclose_loader: true,
};
} else {
this.values = Object.assign({}, ...loadedValues);
// eslint-disable-next-line
// @ts-ignore
this.values = loadedValues;
}
if (this.values.runtimes === undefined) {
this.values.runtimes = [DEFAULT_RUNTIME];