diff jadestache.py @ 41:293a694304b8

reformat
author drewp@bigasterisk.com
date Sat, 19 Nov 2022 17:18:55 -0800
parents e86642cf7393
children
line wrap: on
line diff
--- a/jadestache.py	Sat Nov 19 17:07:10 2022 -0800
+++ b/jadestache.py	Sat Nov 19 17:18:55 2022 -0800
@@ -8,6 +8,7 @@
     expands jade of incoming files. Also includes a cache so it doesn't
     read the same file twice
     """
+
     def __init__(self, *args, **kw):
         pystache.renderer.Loader.__init__(self, *args, **kw)
         self.seen = {}  # path : expanded jade
@@ -37,6 +38,7 @@
     Files need to end with .mustache since it's the mustache loader
     that's going to look for them.
     """
+
     def __init__(self, *args, **kw):
         debug = False
         if 'debug' in kw: