这是我的节目 1.post-commit.py 2.commit-comments.py
我需要从post-commit.py调用commit-comments的main方法,其中有5个参数
如果可能的话,我们怎么可能呢?
提前致谢 Sathishkumar
答案 0 :(得分:1)
您可以在post-commit.py脚本中执行此操作:
import commit_comments
commit_comments.main(arg1, arg2, arg3, arg4, arg5)