From 87601d140053cfa77addaeb6bcdf20bd1463f9e9 Mon Sep 17 00:00:00 2001 From: Omar Roth Date: Sat, 30 Dec 2017 15:38:09 -0600 Subject: [PATCH] Run 'crystal tool format' --- dev/sentry.cr | 15 ++++++++------- src/invidious.cr | 1 - 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/dev/sentry.cr b/dev/sentry.cr index 86d3261c1..77da737d8 100644 --- a/dev/sentry.cr +++ b/dev/sentry.cr @@ -8,13 +8,14 @@ module Sentry property files = [] of String def initialize( - @process_name : String, - @build_command : String, - @run_command : String, - @build_args : Array(String) = [] of String, - @run_args : Array(String) = [] of String, - files = [] of String, - should_build = true) + @process_name : String, + @build_command : String, + @run_command : String, + @build_args : Array(String) = [] of String, + @run_args : Array(String) = [] of String, + files = [] of String, + should_build = true + ) @files = files @should_build = should_build @should_kill = false diff --git a/src/invidious.cr b/src/invidious.cr index df60ffdd3..33be4c6f6 100644 --- a/src/invidious.cr +++ b/src/invidious.cr @@ -5,7 +5,6 @@ require "pg" require "xml" require "time" - macro templated(filename) render "src/views/#{{{filename}}}.ecr", "src/views/layout.ecr" end