From 670a79f723299bc459c1324ae2a47eca977755b2 Mon Sep 17 00:00:00 2001 From: aitbc Date: Tue, 28 Apr 2026 18:03:58 +0200 Subject: [PATCH] Remove dollar sign from GPU price display --- cli/handlers/market.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/handlers/market.py b/cli/handlers/market.py index 6fac785b..b5560cfd 100644 --- a/cli/handlers/market.py +++ b/cli/handlers/market.py @@ -28,7 +28,7 @@ def handle_market_listings(args, default_coordinator_url, output_format, render_ for listing in listings: print(f" - ID: {listing.get('id', 'N/A')}") print(f" Model: {listing.get('model', 'N/A')}") - print(f" Price: ${listing.get('price_per_hour', 0)}/hour") + print(f" Price: {listing.get('price_per_hour', 0)} AIT/hour") print(f" Status: {listing.get('status', 'N/A')}") else: print(" No GPU listings found")