From 0e67e0d3b5f0e03fdc72a7868e2f42c63a06ea8b Mon Sep 17 00:00:00 2001 From: Maros Hluska Date: Mon, 10 Sep 2018 15:36:32 +0900 Subject: [PATCH] Fix minor lint --- lib/miro/dominant_colors.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/miro/dominant_colors.rb b/lib/miro/dominant_colors.rb index a665ec8..29fd8ae 100644 --- a/lib/miro/dominant_colors.rb +++ b/lib/miro/dominant_colors.rb @@ -10,7 +10,7 @@ def initialize(src_image_path, image_type = nil) end def to_hex - return histogram.map{ |item| item[1].html } if Miro.histogram? + return histogram.map { |item| item[1].html } if Miro.histogram? sorted_pixels.collect { |pixel| ChunkyPNG::Color.to_hex(pixel, false) } end