1
0
src/Wip/it/load_module.py
2023-12-31 10:46:23 -07:00

9 lines
183 B
Python

def main(buffer, command):
if len(command) == 1:
print("?")
else:
for module in command[1:]:
if buffer.import_module_(module):
print("Loaded %s" % module)
return buffer