Updated script that can be controled by Nodejs web app
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
def test_trio_import() -> None:
|
||||
import sys
|
||||
|
||||
for module in list(sys.modules.keys()):
|
||||
if module.startswith("trio"):
|
||||
del sys.modules[module]
|
||||
|
||||
import trio # noqa: F401
|
||||
Reference in New Issue
Block a user