Skip to content

Commit 3650560

Browse files
committed
Remove stray debugging print statements
1 parent 0c08bc9 commit 3650560

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

examples/food_ordering.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -168,8 +168,6 @@ async def select_pizza_order(
168168
size = args["size"]
169169
pizza_type = args["type"]
170170

171-
print("[pk] Selected pizza:", size, pizza_type)
172-
173171
# Simple pricing
174172
base_price = {"small": 10.00, "medium": 15.00, "large": 20.00}
175173
price = base_price[size]
@@ -235,8 +233,6 @@ async def select_sushi_order(
235233
count = args["count"]
236234
roll_type = args["type"]
237235

238-
print("[pk] Selected sushi:", count, roll_type)
239-
240236
# Simple pricing: $8 per roll
241237
price = count * 8.00
242238

0 commit comments

Comments
 (0)