From 80a782aefc472277bb29bd428583e261a5bb0ba6 Mon Sep 17 00:00:00 2001 From: moshferatu Date: Thu, 30 Nov 2023 09:31:48 -0800 Subject: [PATCH] Remove usage of double quotes --- iron_condor_ibkr.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/iron_condor_ibkr.py b/iron_condor_ibkr.py index b449530..35528e8 100644 --- a/iron_condor_ibkr.py +++ b/iron_condor_ibkr.py @@ -58,7 +58,7 @@ long_put_strike = float(long_put_contract['Strike']) short_call_strike = float(short_call_contract['Strike']) long_call_strike = float(long_call_contract['Strike']) -print("Short Put Strike:", short_put_strike) +print('Short Put Strike:', short_put_strike) print('Long Put Strike:', long_put_strike) print('Short Call Strike:', short_call_strike) print('Long Call Strike:', long_call_strike)