Skip to content

Commit

Permalink
fix sys.modules import
Browse files Browse the repository at this point in the history
  • Loading branch information
marios8543 committed Oct 31, 2023
2 parents 7565a66 + 28ca7b5 commit a0920cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/src/plugin/sandboxed_plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from importlib.util import module_from_spec, spec_from_file_location
from json import dumps, loads
from logging import getLogger
from sys import exit, path as syspath
from sys import exit, path as syspath, modules as sysmodules
from traceback import format_exc
from asyncio import (get_event_loop, new_event_loop,
set_event_loop, sleep)
Expand Down

0 comments on commit a0920cf

Please sign in to comment.