Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
velios committed Nov 12, 2023
1 parent 9b93de3 commit a6af53d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/bb_excel/core.clj
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit a6af53d

Please sign in to comment.