system-design-primer/solutions
cclauss 8e8f78b2ce
Undefined name 'value'... Change to 'values' * 3
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__.
2018-03-14 13:06:54 +01:00
..
object_oriented_design Convert all .py files to be valid Python (#98) 2018-03-06 19:37:46 -05:00
system_design Undefined name 'value'... Change to 'values' * 3 2018-03-14 13:06:54 +01:00