From c1a53612552a2e5759363f55380357a3dd75caa5 Mon Sep 17 00:00:00 2001 From: Toasterkitten Date: Thu, 25 Jun 2026 15:40:45 -0400 Subject: [PATCH] shop2 --- untitled/content.py | 2 +- untitled/screens/house.py | 2 +- untitled/screens/shop.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/untitled/content.py b/untitled/content.py index 13f89b6..5c95f5b 100644 --- a/untitled/content.py +++ b/untitled/content.py @@ -10,7 +10,7 @@ HUNGER_SADNESS_PENALTY_PER_HOUR = 5 ITEMS = {"food": 3, "medicine": 5, "catnip": 5} -BASE_INVENTORY = {item: 0 for item in ITEMS.keys()} +BASE_INVENTORY = {item: 0 for item in ITEMS} CAT_COLORS = [ "orange tabby", diff --git a/untitled/screens/house.py b/untitled/screens/house.py index 3042d11..642c7ce 100644 --- a/untitled/screens/house.py +++ b/untitled/screens/house.py @@ -1,7 +1,7 @@ import time from untitled import generation, model, persistence, rules, ui -from untitled.screens.common import options, go_to +from untitled.screens.common import go_to, options def house(save: model.Save): diff --git a/untitled/screens/shop.py b/untitled/screens/shop.py index 82048bd..a02126b 100644 --- a/untitled/screens/shop.py +++ b/untitled/screens/shop.py @@ -1,4 +1,4 @@ -from untitled import ui, content, model, rules +from untitled import content, model, rules, ui def shop(save: model.Save):