From 9a8f3c1ee4f2f041b78ab422a6cf6dec0bac0885 Mon Sep 17 00:00:00 2001
From: Edward Betts <edward@4angle.com>
Date: Fri, 29 Sep 2023 07:13:13 +0100
Subject: [PATCH] Tidy

---
 check.py | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/check.py b/check.py
index ff109fe..1a73306 100755
--- a/check.py
+++ b/check.py
@@ -31,15 +31,15 @@ not_here_list = [
 ]
 
 conferences = [
-    #    ("FOSDEM", "https://fosdem.org/2024"),
+    # ("FOSDEM", "https://fosdem.org/2024"),
     # ("PyCascades", "https://2024.pycascades.com/"),
     ("foss-north", "https://foss-north.se/2024"),
     ("Wikimedia Hackathon", "https://www.mediawiki.org/wiki/Wikimedia_Hackathon_2024"),
     ("FOSS4G", "https://2024.foss4g.org/"),
     ("FOSS4G Europe", "https://2024.europe.foss4g.org/"),
     ("FOSSY", "https://2024.fossy.us/"),
-    #    ("North Bay Python", "https://2024.northbaypython.org/"),
-    ("DebConf", "https://wiki.debian.org/DebConf/24"),
+    # ("North Bay Python", "https://2024.northbaypython.org/"),
+    # ("DebConf", "https://wiki.debian.org/DebConf/24"),
     ("State of the Map US", "https://2024.stateofthemap.us/"),
     ("WikiConference North America", "https://wikiconference.org/wiki/2024/Main_Page"),
     ("PyCon DE", "https://2024.pycon.de/"),
@@ -80,7 +80,6 @@ def send_mail(subject: str, body: str) -> None:
     msg["From"] = f"Edward Betts <{mail_from}>"
     msg["Date"] = formatdate()
     msg["Message-ID"] = make_msgid()
-    # msg["X-4angle"] = "conference"
 
     s = smtplib.SMTP(SMTP_HOST)
     s.sendmail(mail_from, [MAIL_TO_ADDRESS], msg.as_string())