From 47f2b33d80e41de8988ca700f62c6f1beffc126d Mon Sep 17 00:00:00 2001 From: Yonas Kolb Date: Mon, 7 May 2018 18:45:17 +1000 Subject: [PATCH] code formatting --- Sources/Include.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/Include.swift b/Sources/Include.swift index 1bccb225..560bb74d 100644 --- a/Sources/Include.swift +++ b/Sources/Include.swift @@ -27,7 +27,7 @@ class IncludeNode : NodeType { let template = try context.environment.loadTemplate(name: templateName) - let subContext = includeContext.flatMap{ context[$0] as? [String: Any] } + let subContext = includeContext.flatMap { context[$0] as? [String: Any] } return try context.push(dictionary: subContext) { return try template.render(context) }