feat: complete modular plugin refactor with 100% E2E coverage for interactions

This commit is contained in:
2026-04-25 20:58:07 +02:00
parent 77e8251aa7
commit 144d6401b5
232 changed files with 66259 additions and 5410 deletions

2
run.py
View File

@@ -1,10 +1,12 @@
import sys
import warnings
import GramAddict
warnings.filterwarnings("ignore", category=UserWarning, module="urllib3")
try:
from urllib3.exceptions import NotOpenSSLWarning
warnings.filterwarnings("ignore", category=NotOpenSSLWarning)
except ImportError:
pass