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>
6161 info ( "Loading Python... " ) ;
6262 pyodide = await loadPyodide ( { stdout : info , stderr : error } ) ;
6363 info ( "done\nInstalling micropip..." ) ;
64- await pyodide . loadPackage ( "micropip" , { errorCallback : error , messgaeCallback : info } ) ;
64+ await pyodide . loadPackage ( "micropip" , { errorCallback : error , messageCallback : info } ) ;
6565 info ( "done\nFetching current Schemascii version... " ) ;
6666 var pyproject_toml = await fetch ( "pyproject.toml" ) . then ( x => x . text ( ) ) ;
6767 var ver = / v e r s i o n = " ( [ \d . ] + ) " / . exec ( pyproject_toml ) [ 1 ] ;
6868 info ( `${ ver } \nInstalling schemascii-${ ver } ... ` ) ;
69- await pyodide . pyimport ( "micropip" , { errorCallback : error , messgaeCallback : info } )
69+ await pyodide . pyimport ( "micropip" , { errorCallback : error , messageCallback : info } )
7070 . install ( `https://dragoncoder047.github.io/schemascii/dist/schemascii-${ ver } -py3-none-any.whl` ) ;
7171 schemascii = pyodide . pyimport ( "schemascii" ) ;
7272 await setup ( ) ;
You can’t perform that action at this time.
0 commit comments