aboutsummaryrefslogtreecommitdiffstats
path: root/python
diff options
context:
space:
mode:
Diffstat (limited to 'python')
-rw-r--r--python/report_ops/wires.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/python/report_ops/wires.py b/python/report_ops/wires.py
index 60ad0e93..8767fe51 100644
--- a/python/report_ops/wires.py
+++ b/python/report_ops/wires.py
@@ -149,5 +149,9 @@ class SerenitasUMBWire(
df = pd.read_excel(p, skiprows=3)
df["index"] = df.index
for row_dict in df.to_dict(orient="records"):
+ if row_dict["Transaction Date"].startswith(
+ "No records"
+ ): # No wires at the moment
+ continue
cls.from_report_line(row_dict).stage()
cls.commit()