diff options
| author | tza <marios8543@gmail.com> | 2022-04-14 00:01:35 +0300 |
|---|---|---|
| committer | tza <marios8543@gmail.com> | 2022-04-14 00:01:35 +0300 |
| commit | de435e22fb0f01df81b2781f38e5890dbbb728ba (patch) | |
| tree | 2550c9f5a7bedaaf08b5587fbfe05042e970fca5 | |
| parent | 6694d5ab714cd27c88d51e2561a898718f2e8e69 (diff) | |
| download | decky-loader-de435e22fb0f01df81b2781f38e5890dbbb728ba.tar.gz decky-loader-de435e22fb0f01df81b2781f38e5890dbbb728ba.zip | |
added default value to injector tab run_async
| -rw-r--r-- | plugin_loader/injector.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugin_loader/injector.py b/plugin_loader/injector.py index bf970780..46831b6d 100644 --- a/plugin_loader/injector.py +++ b/plugin_loader/injector.py @@ -31,7 +31,7 @@ class Tab: return (await self.websocket.receive_json()) if receive else None raise RuntimeError("Websocket not opened") - async def evaluate_js(self, js, run_async): + async def evaluate_js(self, js, run_async=False): await self.open_websocket() res = await self._send_devtools_cmd({ "id": 1, |
