From 603ba3ab780190497a86cc8b6bc13f9c53c44164 Mon Sep 17 00:00:00 2001 From: Matt Stancliff Date: Sat, 25 Nov 2023 11:56:29 -0800 Subject: [PATCH] Cleanup tiny things a line here, a line there, it adds up --- .gitignore | 1 + icli/helpers.py | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 939468f..fbdcaa0 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,6 @@ .env.icli +runlogs/ dist/ cache*/ icli/hist/ diff --git a/icli/helpers.py b/icli/helpers.py index 2f1c96a..392c2d2 100644 --- a/icli/helpers.py +++ b/icli/helpers.py @@ -306,9 +306,9 @@ def parseContractOptionFields(contract, d): else: # populate columns for non-contracts/warrants too so the final # column-order generator still works. - d["PC"] = None - d["strike"] = None d["date"] = None + d["strike"] = None + d["PC"] = None def sortLocalSymbol(s):