From 21f5ad3426105664623933e80b6fc7e1dcaa2e62 Mon Sep 17 00:00:00 2001 From: acgzone1 Date: Mon, 26 Jan 2026 16:59:52 +0100 Subject: [PATCH] feat: improve console output clarity in main.py Added descriptive f-strings to print statements for better user feedback during execution. --- main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.py b/main.py index 822403a7..21adfc25 100644 --- a/main.py +++ b/main.py @@ -31,7 +31,7 @@ # Get account balance balance = client.get_balance() -print("Balance:", balance) +print(f"Current Balance: {balance}") # Initialize the WebSocket client ws_client = KalshiWebSocketClient( @@ -41,4 +41,4 @@ ) # Connect via WebSocket -asyncio.run(ws_client.connect()) \ No newline at end of file +asyncio.run(ws_client.connect())