From b3b200795dffab4a30891e359b76d6c51100b1ad Mon Sep 17 00:00:00 2001 From: Szymon Uglis Date: Wed, 27 Nov 2024 00:11:22 +0100 Subject: [PATCH] dart format --- lib/src/web_app/mustache.dart | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/src/web_app/mustache.dart b/lib/src/web_app/mustache.dart index 4a6b475..4223d9b 100644 --- a/lib/src/web_app/mustache.dart +++ b/lib/src/web_app/mustache.dart @@ -32,8 +32,7 @@ class MustacheResponse extends shelf.Response { final templateData = await File("$webServerTemplatesDirectory/$name").readAsString(); - return shelf.Response(200, - body: await processor.process(templateData), headers: {"Content-Type": 'text/html'}); + return shelf.Response(200, body: await processor.process(templateData), headers: {"Content-Type": 'text/html'}); } }