From f8063e048f75933eb80913a93847ce53fa2e582b Mon Sep 17 00:00:00 2001 From: Vitaliy Vlasov Date: Tue, 13 Mar 2018 15:20:33 +0200 Subject: [PATCH] Convert to double instead of float --- src/clj/commiteth/github/core.clj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/clj/commiteth/github/core.clj b/src/clj/commiteth/github/core.clj index 93a4f564..e51ce95e 100644 --- a/src/clj/commiteth/github/core.clj +++ b/src/clj/commiteth/github/core.clj @@ -219,7 +219,7 @@ (str "Tokens: " (str/join " " (map (fn [[tla balance]] (format "%s: %.2f" (subs (str tla) 1) - (float balance))) + (double balance))) token-balances)) "\n")))