diff --git a/src/core/pyproxy.ts b/src/core/pyproxy.ts index 7bbd6fb9988..3a4b4091454 100644 --- a/src/core/pyproxy.ts +++ b/src/core/pyproxy.ts @@ -18,7 +18,7 @@ declare var Tests: any; declare var Module: any; declare var Hiwire: any; -import {TypedArray} from "lib"; +import { TypedArray } from "lib"; import { warnOnce } from "pyodide_util"; // pyodide-skip diff --git a/src/js/lib.ts b/src/js/lib.ts index 10ea5e1510f..be534a55454 100644 --- a/src/js/lib.ts +++ b/src/js/lib.ts @@ -6,15 +6,15 @@ import { type InFuncType } from "./streams"; import { type PackageData } from "./load-package"; export type TypedArray = -| Int8Array -| Uint8Array -| Int16Array -| Uint16Array -| Int32Array -| Uint32Array -| Uint8ClampedArray -| Float32Array -| Float64Array; + | Int8Array + | Uint8Array + | Int16Array + | Uint16Array + | Int32Array + | Uint32Array + | Uint8ClampedArray + | Float32Array + | Float64Array; declare global { export var Module: Module; diff --git a/src/tests/test_core_python.py b/src/tests/test_core_python.py index 76f9625d688..6fab777904f 100644 --- a/src/tests/test_core_python.py +++ b/src/tests/test_core_python.py @@ -95,6 +95,9 @@ def pytest_generate_tests(metafunc): tests = get_tests() metafunc.parametrize( "main_test", - [pytest.param(t, marks=pytest.mark.requires_dynamic_linking) for t in tests], + [ + pytest.param(t, marks=pytest.mark.requires_dynamic_linking) + for t in tests + ], ids=[t[0] for t in tests], )