I'm not really a Python expert so I'm kinda stuck with this weird situation.
Using wxPython, I'm trying to create a child Panel with my Window class as it's parent. For testing purposes I've created a new function which should add a simple Panel with a button.
In Visual Studio I can see that when creating the new Panel, instead of providing parameters for the wx.Panel, it's only expecting *args and **kwargs.
How do I get around that and provide needed params?
To give you a better idea what I'm talking about, see this image. I'd like to input the "parent" parameter.