added description

This commit is contained in:
2024-09-18 12:48:20 -04:00
parent aa584375e6
commit 4640b9cb29
2 changed files with 8 additions and 10 deletions

View File

@@ -46,7 +46,6 @@ async def add_delivery(request: Request):
new_home_factor = calc_home_factor(gallons_put_in_home = gallons_put_in_home,
current_house_factor=customer_home_factor)
get_auto_delivery.house_factor = new_home_factor
get_auto_delivery.tank_height = 'Full'
get_auto_delivery.last_fill = now
@@ -55,6 +54,5 @@ async def add_delivery(request: Request):
get_auto_delivery.auto_status = 0
session.add(get_auto_delivery)
return ({"ok": True}), 200