Initial commit

This commit is contained in:
2026-07-05 23:22:38 -04:00
commit dec9313362
9 changed files with 161 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
from __future__ import annotations
def reload_plugin() -> None:
import sys
prefix = "{}.".format(__package__)
for module_name in tuple(
filter(lambda m: m.startswith(prefix) and m != __name__, sys.modules)
):
del sys.modules[module_name]
reload_plugin()
from .plugin import * # noqa: F401, F403, E402