From a6af53df5c32053864e4827532752bf200be467d Mon Sep 17 00:00:00 2001 From: velios Date: Sun, 12 Nov 2023 23:06:18 +0300 Subject: [PATCH] fix --- src/bb_excel/core.clj | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/bb_excel/core.clj b/src/bb_excel/core.clj index aeb88b3..cfb8e32 100644 --- a/src/bb_excel/core.clj +++ b/src/bb_excel/core.clj @@ -155,7 +155,7 @@ [])) (def ^:const BASE_ROW_INDEX 0) -(def ^:const START_COLUMN_INDEX 1) +(def ^:const BASE_COLUMN_INDEX 0) (defn valid-cell-index? [cell-index] @@ -195,7 +195,7 @@ {:row-data (assoc row-data (keyword col-index) cell-value) :last-processed-col-index col-index})) {:row-data {} - :last-processed-col-index START_COLUMN_INDEX}) + :last-processed-col-index BASE_COLUMN_INDEX}) (:row-data))) (defn process-rows