devth/yetibot

View on GitHub
src/yetibot/commands/weather/formatters.clj

Summary

Maintainability
Test Coverage

Non-idiomatic code found in (-> (/ km 1.609) float)
Open

(defn km-to-mi [km] (-> (/ km 1.609) float))

Consider using:

(float (/ km 1.609))

instead of:

(-> (/ km 1.609) float)

There are no issues that match your filters.

Category
Status