I have a couple of questions. The code below doesn\'t run because I\'ve specified three arguments to the __init__ method and the make_dog function retu
__init__
make_dog
Your function returns a dicitionary and class should takie argunents. Use
**dict or **func()
in a new object call