Skip to content

Commit

Permalink
Fixing linter error for shadowed var
Browse files Browse the repository at this point in the history
  • Loading branch information
a-luz committed Nov 3, 2023
1 parent 495822c commit 75d614e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/triangulum/config_namespaced_spec.clj
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
(set (map namespace (keys m))))

(defn- no-keys-of-ns?
[m ns]
(not (contains? (key-namespaces m) ns)))
[m ns-string]
(not (contains? (key-namespaces m) ns-string)))

;; New Format (namespaced)

Expand Down

0 comments on commit 75d614e

Please sign in to comment.