Skip to content

Commit 2513bd7

Browse files
committed
Fix formatting
1 parent 56866da commit 2513bd7

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

src/luciolucio/holi/core.cljc

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -74,18 +74,18 @@
7474

7575
(def ^:private read-dates-single
7676
(memoize
77-
(fn [calendar]
78-
(let [partition-size (if (= calendar constants/WEEKEND-FILE-NAME) WEEKEND-STRING-LENGTH HOLIDAY-STRING-LENGTH)
79-
holiday-strings (read-holiday-strings calendar partition-size)]
80-
(when holiday-strings
81-
(map parse-date holiday-strings))))))
77+
(fn [calendar]
78+
(let [partition-size (if (= calendar constants/WEEKEND-FILE-NAME) WEEKEND-STRING-LENGTH HOLIDAY-STRING-LENGTH)
79+
holiday-strings (read-holiday-strings calendar partition-size)]
80+
(when holiday-strings
81+
(map parse-date holiday-strings))))))
8282

8383
(def ^:private read-dates-multi
8484
(memoize
85-
(fn [calendars]
86-
(->> calendars
87-
(keep read-dates-single)
88-
(apply util/merge-sorted-lists)))))
85+
(fn [calendars]
86+
(->> calendars
87+
(keep read-dates-single)
88+
(apply util/merge-sorted-lists)))))
8989

9090
(defn read-dates [cal-or-cals]
9191
(if (string? cal-or-cals)

0 commit comments

Comments
 (0)