这是我编辑的代码:
from tkinter import *
class UI:
def __init__(self):
self.root = Tk()
self.text= Text(self.root)
self.text.pack()
self.text.bind("<Return>", self.entry.edit_undo)
self.text.mainloop()
UI()
当我运行它时它会正常运行,但是当diff.node_root.bind()
被触发时,它会显示一个错误,上面写着TypeError: edit_undo() takes 1 positional argument but 2 were given
. 有人可以帮帮我吗?