summaryrefslogtreecommitdiff
path: root/backend/plugin.py
diff options
context:
space:
mode:
authormarios8543 <marios8543@gmail.com>2023-09-18 00:31:54 +0300
committermarios8543 <marios8543@gmail.com>2023-10-17 17:08:23 +0300
commita7c358844c96b7fb52f4a7e8d16a5cd928a1ca12 (patch)
treecb951d59fed4d0e4283c95a53d4344b1e8963632 /backend/plugin.py
parente2d708a6af0ec75c557b11d3a442af57240302b4 (diff)
downloaddecky-loader-a7c358844c96b7fb52f4a7e8d16a5cd928a1ca12.tar.gz
decky-loader-a7c358844c96b7fb52f4a7e8d16a5cd928a1ca12.zip
type hints on main,plugin,updater,utilites.localsocket
Diffstat (limited to 'backend/plugin.py')
-rw-r--r--backend/plugin.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/backend/plugin.py b/backend/plugin.py
index 781d9f7b..5c1e099f 100644
--- a/backend/plugin.py
+++ b/backend/plugin.py
@@ -20,7 +20,7 @@ class PluginWrapper:
self.plugin_path = plugin_path
self.plugin_directory = plugin_directory
self.method_call_lock = Lock()
- self.socket = LocalSocket(self._on_new_message)
+ self.socket: LocalSocket = LocalSocket(self._on_new_message)
self.version = None