为什么pyinstaller在脚本执行无错误时在方法上抛出错误?

时间:2019-07-13 08:14:26

标签: python tkinter syntax-error pyinstaller args

脚本运行没有问题,但是当我尝试制作.exe时,它将引发以下错误:

Syntax error in d:\Archive\Work\Python\Project v2\tkintertest1.py
  File "d:\Archive\Work\Python\Project v2\tkintertest1.py", line 810
     def changeplan(*args, widget=None):
                            ^
 SyntaxError: invalid syntax

我尝试过更改脚本中的部分代码,但是我是初学者,还没有找到适当的替代方法。

def changeplan(*args, widget=None):
    widget.get()
    for i in self.treeplan.get_children():
        self.treeplan.delete(i)
    self.db_refreshplan(pforder, pfdate, pfmarker, pfstyle, pfsize, pffabric, pftype, pfcolor, pfcomment, pfdiff)
    planfilters()

最后,我只想使脚本可执行文件!

0 个答案:

没有答案