Browse Source

removed my name from TODOs

Azrenbeth 2 years ago
parent
commit
36834ed792
3 changed files with 3 additions and 3 deletions
  1. 1 1
      sydent/http/httpcommon.py
  2. 1 1
      sydent/sign/ed25519.py
  3. 1 1
      sydent/terms/terms.py

+ 1 - 1
sydent/http/httpcommon.py

@@ -42,7 +42,7 @@ class SslComponents:
         self.trustRoot = self.makeTrustRoot()
 
     def makeMyCertificate(self):
-        # azren TODO Move this loading into parse_config
+        # TODO Move some of this loading into parse_config
         privKeyAndCertFilename = self.sydent.config.http.cert_file
         if privKeyAndCertFilename == "":
             logger.warning(

+ 1 - 1
sydent/sign/ed25519.py

@@ -18,7 +18,7 @@ if TYPE_CHECKING:
     from sydent.sydent import Sydent
 
 
-# azren TODO just remove this class
+# TODO just remove this class
 class SydentEd25519:
     def __init__(self, syd: "Sydent"):
         self.sydent = syd

+ 1 - 1
sydent/terms/terms.py

@@ -106,7 +106,7 @@ def get_terms(sydent: "Sydent") -> Optional[Terms]:
 
     try:
         termsYaml = None
-        # azren TODO - move some of this to parse_config
+        # TODO - move some of this to parse_config
         termsPath = sydent.config.general.terms_path
         if termsPath == "":
             return Terms(None)