Skip to content
This repository was archived by the owner on Sep 21, 2023. It is now read-only.

Commit 2acbf46

Browse files
committed
Missing }
1 parent 9cdfbe6 commit 2acbf46

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pyscript.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -422,7 +422,7 @@ const main = function() {
422422
startPlugin(plugin)
423423
plugin.onRuntimeReady?.(config, runtime);
424424
}
425-
const pyPluginRegistered = new CustomEvent("py-plugin-registered", {detail: { config: config, plugin: plugin});
425+
const pyPluginRegistered = new CustomEvent("py-plugin-registered", {detail: { config: config, plugin: plugin}});
426426
document.dispatchEvent(pyPluginRegistered);
427427
}
428428

@@ -441,7 +441,7 @@ const main = function() {
441441
*/
442442
logger(`Starting plugin "${plugin.name}" ⚡`);
443443
plugin.start?.(config);
444-
const pyPluginStarted = new CustomEvent("py-plugin-started", {detail: { config: config, plugin: plugin});
444+
const pyPluginStarted = new CustomEvent("py-plugin-started", {detail: { config: config, plugin: plugin}});
445445
document.dispatchEvent(pyPluginStarted);
446446
}
447447

0 commit comments

Comments
 (0)