Cleanup some unnecessary utility (#1453)

This commit is contained in:
Andrea Giammarchi
2023-05-06 08:20:08 +02:00
committed by GitHub
parent 213ced0c7f
commit 6a27c6d9f2
5 changed files with 8 additions and 41 deletions

View File

@@ -143,7 +143,7 @@ export class PluginManager {
}
add(...plugins: Plugin[]) {
for (const p of plugins) this._plugins.push(p);
this._plugins.push(...plugins);
}
addPythonPlugin(plugin: PythonPlugin) {