Remove unnecessary argument

This commit is contained in:
Michael Droettboom 2018-12-06 18:51:36 -05:00
parent 19475e1ab5
commit 5484bc73c8
1 changed files with 1 additions and 1 deletions

View File

@ -153,7 +153,7 @@ var languagePluginLoader = new Promise((resolve, reject) => {
// exactly "toLoad * 2" times.
var packageCounter = Object.keys(toLoad).length * 2;
window.pyodide._module.monitorRunDependencies = (n) => {
window.pyodide._module.monitorRunDependencies = () => {
packageCounter--;
if (packageCounter === 0) {
for (let package in toLoad) {