Skip to content

Commit

Permalink
Clean up requires further.
Browse files Browse the repository at this point in the history
Remove an :as to silence clj-kondo warning.

Apparently kaocha.specs was added accidentally to kaocha.runner
while sorting the imports.
  • Loading branch information
alysbrooks committed Mar 9, 2023
1 parent 264e1e8 commit 3a518d1
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion src/kaocha/api.clj
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
[kaocha.history :as history]
[kaocha.output :as output]
[kaocha.plugin :as plugin]
[kaocha.report :as report] ;; required for resolve?
[kaocha.report] ;; required for resolve?
[kaocha.result :as result]
[kaocha.util :as util]
[kaocha.stacktrace :as stacktrace]
Expand Down
1 change: 0 additions & 1 deletion src/kaocha/runner.clj
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
[kaocha.output :as output]
[kaocha.plugin :as plugin]
[kaocha.result :as result]
#_[kaocha.specs :as specs] ;; required for some reason?
[slingshot.slingshot :refer [throw+ try+]])
(:import (java.io File)))

Expand Down

0 comments on commit 3a518d1

Please sign in to comment.