From 2572c706a8f9c4fead7bd31767e2abcd735ca13a Mon Sep 17 00:00:00 2001 From: Lee Spector Date: Thu, 22 Jul 2021 16:14:24 -0400 Subject: [PATCH] Name unused argument idiomatically --- src/propeller/core.cljc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/propeller/core.cljc b/src/propeller/core.cljc index 0023a41..8a72779 100755 --- a/src/propeller/core.cljc +++ b/src/propeller/core.cljc @@ -3,7 +3,7 @@ (defn -main "Not intended to be run; just print a message." - [& args] + [& _] ;; Exception for when no args were passed (println "To run a genetic programming problem, provide a the problem's") (println "namespace as specified in the Propeller README file at")