![]() The function parameter in __reducer(self, key, value):__ is __value__ (without an _s_) but the function body uses __values__ with an _s_ which creates an undefined name. Solution: change the function parameter from __value__ to __values__. |
||
---|---|---|
.. | ||
object_oriented_design | ||
system_design |