Skip to content

Commit 6c15c92

Browse files
committed
fix linting
1 parent d0ad971 commit 6c15c92

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

wasm-preview/index.html

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,7 @@
3939
</head>
4040
<body>
4141
<main>
42-
<h1>
43-
<a href="https://github.com/pydantic/pydantic-core/tree/main/wasm-preview">pydantic-core</a> unit tests
44-
</h1>
42+
<h1><a href="https://github.com/pydantic/pydantic-core/tree/main/wasm-preview">pydantic-core</a> unit tests</h1>
4543
<aside>
4644
pydantic-core is compiled to webassembly and run in the browser using
4745
<a href="https://pyodide.org/en/stable/">pyodide</a>.

wasm-preview/worker.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ async function get(url, mode) {
7474
}
7575
}
7676

77-
async function main () {
77+
async function main() {
7878
const latest_release = await get('https://api.github.com/repos/pydantic/pydantic-core/releases/latest', 'json');
7979
const {tag_name} = latest_release;
8080
self.postMessage(`Running tests against latest pydantic-core release (${tag_name}).\n`);
@@ -102,4 +102,4 @@ async function main () {
102102
}
103103
}
104104

105-
main()
105+
main();

0 commit comments

Comments
 (0)