def wrapped_cmd(cmd):
class Command(cmd):
def run(self):
if 'src' not in sys.path:
sys.path.append('src')
from transpyler.jupyter.setup import setup_assets
setup_assets(True)
cmd.run(self)
return Command
# Run setup() function
评论列表
文章目录