From cf0190c937a3a2a92a339e591a1daaeac2c2f354 Mon Sep 17 00:00:00 2001
From: zowoq <59103226+zowoq@users.noreply.github.com>
Date: Sun, 5 May 2024 17:30:17 +1000
Subject: [PATCH] editorconfig fixes

---
 docs/CNAME                  | 2 +-
 hosts/build02/supervisor.py | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/docs/CNAME b/docs/CNAME
index acb60ea..07a799c 100644
--- a/docs/CNAME
+++ b/docs/CNAME
@@ -1 +1 @@
-nix-community.org
\ No newline at end of file
+nix-community.org
diff --git a/hosts/build02/supervisor.py b/hosts/build02/supervisor.py
index fbf9d9e..68e0c16 100644
--- a/hosts/build02/supervisor.py
+++ b/hosts/build02/supervisor.py
@@ -296,7 +296,7 @@ class Storage:
 
                 CREATE TRIGGER `log_insert_started`
                 AFTER INSERT
-                ON `log` 
+                ON `log`
                 BEGIN
                     UPDATE `queue` SET
                         `last_started` = NEW.`started`
@@ -305,7 +305,7 @@ class Storage:
 
                 CREATE TRIGGER `log_update_started`
                 AFTER UPDATE OF `started`
-                ON `log` 
+                ON `log`
                 BEGIN
                     UPDATE `queue` SET
                         `last_started` = NEW.`started`