Files
LSP-prolog/boot.py
T
2026-07-05 23:22:47 -04:00

19 lines
342 B
Python

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