File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -61,12 +61,12 @@ <h1>Schemascii Playground</h1>
61
61
info ( "Loading Python... " ) ;
62
62
pyodide = await loadPyodide ( { stdout : info , stderr : error } ) ;
63
63
info ( "done\nInstalling micropip..." ) ;
64
- await pyodide . loadPackage ( "micropip" , { errorCallback : error , messgaeCallback : info } ) ;
64
+ await pyodide . loadPackage ( "micropip" , { errorCallback : error , messageCallback : info } ) ;
65
65
info ( "done\nFetching current Schemascii version... " ) ;
66
66
var pyproject_toml = await fetch ( "pyproject.toml" ) . then ( x => x . text ( ) ) ;
67
67
var ver = / v e r s i o n = " ( [ \d . ] + ) " / . exec ( pyproject_toml ) [ 1 ] ;
68
68
info ( `${ ver } \nInstalling schemascii-${ ver } ... ` ) ;
69
- await pyodide . pyimport ( "micropip" , { errorCallback : error , messgaeCallback : info } )
69
+ await pyodide . pyimport ( "micropip" , { errorCallback : error , messageCallback : info } )
70
70
. install ( `https://dragoncoder047.github.io/schemascii/dist/schemascii-${ ver } -py3-none-any.whl` ) ;
71
71
schemascii = pyodide . pyimport ( "schemascii" ) ;
72
72
await setup ( ) ;
You can’t perform that action at this time.
0 commit comments