You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
komandr/plugins/test_plugin.py

6 lines
295 B

depends = ["bprint", "test_lib"]
def run(l):
if "test_lib" not in l.keys(): print("requires test_lib library!");return
l["bprint"].p(f"printing out the test value woot woot: {l['test_lib'].test_var}")
l["bprint"].p("callign the test function woot woot")
l["test_lib"].test_func()