Refactor plugin paths in scripts and tests to ensure consistent directory structure

This commit is contained in:
Jokob @NetAlertX committed 2026-08-10 03:51:23 +00:00
1 parent 9e38cfd8b4
commit a06dc259a8
6 files changed
+10 -9

No files matched your search

+1 -1
View File
@@ -4,7 +4,7 @@ import sys
import requests
sys.path.insert(0, os.path.join(os.path.dirname(__file__), '../../server'))
sys.path.insert(0, os.path.join(os.path.dirname(__file__), '../plugins'))
sys.path.insert(0, os.path.join(os.path.dirname(__file__), '../../server/plugins'))
from plugin_helper import Plugin_Objects, mylog, is_mac # noqa: E402 [flake8 lint suppression]
from helper import get_setting_value # noqa: E402 [flake8 lint suppression]