[Solved] in __init__ raise TypeError(“%s() got an unexpected keyword argument ‘%s'” % (cls.__name__, kwarg)) [closed]


it looks like your function Board does not recognize description as a parameter.
That means, your function does not accept the respective parameter.

It’s better that you remove the description parameter.

2

solved in __init__ raise TypeError(“%s() got an unexpected keyword argument ‘%s'” % (cls.__name__, kwarg)) [closed]