Python Forum
[WxPython] TypeError: request for something already fulfilled?
Thread Rating:
  • 1 Vote(s) - 1 Average
  • 1
  • 2
  • 3
  • 4
  • 5
[WxPython] TypeError: request for something already fulfilled?
#4
This is not the same error, the error shows that your code has the following
hbox.Add(Eckpanel, 0, wx.EXPAND)
which is trying to add the class Eckpanel which should be an instance of Eckpanel.
you need to create the instance of Eckpanel passing it the parent and id arguments and add the result of that call to hbox's add method.
Reply


Messages In This Thread
RE: TypeError: request for something already fulfilled? - by Yoriz - Dec-23-2016, 06:06 PM

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020