Skip to content

Commit ec33181

Browse files
committed
reformatting for readability
1 parent 5fe69fb commit ec33181

File tree

1 file changed

+3
-1
lines changed
  • Clojure-Websockets/TwitterClient/src/clj/birdwatch_tc/twitterclient

1 file changed

+3
-1
lines changed

Clojure-Websockets/TwitterClient/src/clj/birdwatch_tc/twitterclient/processing.clj

+3-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,9 @@
3030
(fn
3131
([r] (step r))
3232
([r x]
33-
(let [json-lines (-> (str @buff x) (insert-newline) (str/split-lines))
33+
(let [json-lines (-> (str @buff x)
34+
(insert-newline)
35+
(str/split-lines))
3436
to-process (butlast json-lines)]
3537
(reset! buff (last json-lines))
3638
(if to-process (reduce step r to-process) r)))))))

0 commit comments

Comments
 (0)