Skip to content

Commit ba8e45d

Browse files
committed
fix a majorly broken variable
1 parent 99e955a commit ba8e45d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

domain_model.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@ def __contains__(self, sku):
2626
return sku in self._sources
2727

2828
def supplement_with(self, other):
29-
for sku, qty in other._sources.items():
29+
for sku, source in other._sources.items():
3030
if sku not in self:
31-
self._sources[sku] = qty
31+
self._sources[sku] = source
3232

3333
def decrement_available_quantities(self):
3434
for sku, source in self._sources.items():

0 commit comments

Comments
 (0)