Skip to content

Commit ac0239c

Browse files
committed
Add missing require for clojure.pprint
1 parent 4258ac2 commit ac0239c

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

CHANGELOG.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
# Unreleased
22

3-
## Added
4-
53
## Fixed
64

7-
## Changed
5+
- Add missing require for `clojure.pprint`
86

97
# 0.16.68 (2024-07-17 / 3c1b328)
108

src/lambdaisland/cli.clj

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
(ns lambdaisland.cli
2-
(:require [clojure.string :as str]
3-
[clojure.set :as set]))
2+
(:require
3+
[clojure.string :as str]
4+
[clojure.set :as set]
5+
[clojure.pprint :as pprint]))
46

57
;; I've tried to be somewhat consistent with variable naming
68

@@ -529,7 +531,7 @@
529531
(binding [*out* *err*]
530532
(println "[FATAL]" (.getMessage e))
531533
(if-let [d (ex-data e)]
532-
(clojure.pprint/pprint d)))
534+
(pprint/pprint d)))
533535
(System/exit (:exit (ex-data e) 1)))))
534536

535537

0 commit comments

Comments
 (0)