Browse Source

Product name visible when writting a quantity

Jovian (Netbook) 5 years ago
parent
commit
0f79d79c98
1 changed files with 1 additions and 0 deletions
  1. 1 0
      cli/quantity_asker.py

+ 1 - 0
cli/quantity_asker.py

@@ -13,6 +13,7 @@ class QuantityAsker:
         ]
 
     def askForOne(self, name):
+        self.widget[0]['message'] = 'Quantity for ' + name + ' (g)'
         return int(prompt(self.widget)['number'])
 
     def askForEachOf(self, nameList):