diff options
| author | AAGaming <aagaming@riseup.net> | 2024-06-13 17:47:53 -0400 |
|---|---|---|
| committer | AAGaming <aagaming@riseup.net> | 2024-06-13 17:47:53 -0400 |
| commit | 54aecee64e5c549a440127995f94aeb77fb9d0dd (patch) | |
| tree | 9dc1caa3e8fedc4722edb7b53257b1003173d48a /backend/decky_loader/plugin/plugin.py | |
| parent | 822b6bcaaa69389aeea815c313fefb20f1a080f7 (diff) | |
| download | decky-loader-54aecee64e5c549a440127995f94aeb77fb9d0dd.tar.gz decky-loader-54aecee64e5c549a440127995f94aeb77fb9d0dd.zip | |
hook up plugin events properly
Diffstat (limited to 'backend/decky_loader/plugin/plugin.py')
| -rw-r--r-- | backend/decky_loader/plugin/plugin.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/backend/decky_loader/plugin/plugin.py b/backend/decky_loader/plugin/plugin.py index aff35e5c..61b5ca4f 100644 --- a/backend/decky_loader/plugin/plugin.py +++ b/backend/decky_loader/plugin/plugin.py @@ -90,7 +90,7 @@ class PluginWrapper: return await request.wait_for_result() - async def execute_method(self, method_name: str, args: List[Any]): + async def execute_method(self, method_name: str, *args: List[Any]): if self.passive: raise RuntimeError("This plugin is passive (aka does not implement main.py)") |
