A tiny sandbox repo for experimenting with automated code review (Greptile).
Contains a small cart module with intentionally realistic logic so we can see
what a reviewer flags.
from cart import Cart
cart = Cart()
cart.add_item("widget", price=9.99, quantity=2)
print(cart.total())