This is what I\'m looking for:
def __init__(self, *args): list_of_args = #magic Parent.__init__(self, list_of_args)
I need to pass *args to
If you're looking for something in the same direction as @simon 's solution, then:
def test_args(*args): lists = [*args] print(lists) test_args([7],'eight',[[9]])
Result:
[[7], 'eight', [[9]]]