We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a0b3575 commit a1f0138Copy full SHA for a1f0138
weight_predict/weight_predict.py
@@ -20,6 +20,7 @@ def __init__(self, starting_value: float = 0.0):
20
self._previous_weight_value = starting_value
21
self._items = list()
22
self._items = db.get_items()
23
+ self._items_by_id = dict()
24
25
for item in self._items:
26
self._items_by_id[item.item_id] = item
0 commit comments