fixed variable name

This commit is contained in:
evan.steele 2024-12-08 17:02:37 -08:00
parent 2e19b65349
commit 618939e6b2
1 changed files with 1 additions and 1 deletions

View File

@ -17,7 +17,7 @@ def feedKitty():
kittyname = request.args.get('kitty')
try:
amount_default_value = 1
limit = int(request.args.get('amount'))
amount = int(request.args.get('amount'))
except ValueError:
amount = amount_default_value