diff --git a/app/inventory.py b/app/inventory.py index b73569a96..03c1e7ff4 100644 --- a/app/inventory.py +++ b/app/inventory.py @@ -13,6 +13,7 @@ class Product: """Represents a product in the inventory.""" + sku: str name: str price: float @@ -27,7 +28,7 @@ def total_value(self) -> float: class InventoryManager: """Manages product inventory with tracking and alerts.""" - LOW_STOCK_THRESHOLD = 10 + LOW_STOCK_THRESHOLD = 11 def __init__(self) -> None: self._products: dict[str, Product] = {}