Tkinter, error maximum recursion depth exceeded

前端 未结 1 769
失恋的感觉
失恋的感觉 2020-12-04 03:17

I am having trouble writting a tkinter application with matplotlib that updates dinamicaly. I create a plot and use it inside the tkinter window. Then the plot is updated ev

相关标签:
1条回答
  • 2020-12-04 04:03

    Change self.root.after(50, self.update_clock()) to self.root.after(50, self.update_clock), after

    after(delay_ms, callback=None, *args)

    Registers an alarm callback that is called after a given time.

    0 讨论(0)
提交回复
热议问题