diff options
| author | AAGaming <aagaming@riseup.net> | 2023-09-25 13:06:46 -0400 |
|---|---|---|
| committer | marios8543 <marios8543@gmail.com> | 2023-10-17 17:08:23 +0300 |
| commit | bf83eabe6b19e560bc3e5fd5ae961edf7aea6839 (patch) | |
| tree | 3ae98ed5761e9a329a422fe43ee3317784b0c26e /backend/plugin.py | |
| parent | a7c358844c96b7fb52f4a7e8d16a5cd928a1ca12 (diff) | |
| download | decky-loader-bf83eabe6b19e560bc3e5fd5ae961edf7aea6839.tar.gz decky-loader-bf83eabe6b19e560bc3e5fd5ae961edf7aea6839.zip | |
move to module imports
Diffstat (limited to 'backend/plugin.py')
| -rw-r--r-- | backend/plugin.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/backend/plugin.py b/backend/plugin.py index 5c1e099f..163bb9b6 100644 --- a/backend/plugin.py +++ b/backend/plugin.py @@ -9,10 +9,10 @@ from os import path, environ from signal import SIGINT, signal from sys import exit, path as syspath from typing import Any, Dict -from localsocket import LocalSocket -from localplatform import setgid, setuid, get_username, get_home_path -from customtypes import UserType -import helpers +from .localsocket import LocalSocket +from .localplatform import setgid, setuid, get_username, get_home_path +from .customtypes import UserType +from . import helpers class PluginWrapper: def __init__(self, file: str, plugin_directory: str, plugin_path: str) -> None: |
