Commit 2e3089fa authored by Taddeus Kroes's avatar Taddeus Kroes

JavaScript/CSS extensions now extend the Importer class.

parent b144614f
from cache import Cache
from importer import Importer
class CssCache(Cache):
pass
class CssCache(Importer):
def __init__(self, root):
Importer.__init__(self, root=root, extension='css')
from cache import Cache
from importer import Importer
class JsCache(Cache):
pass
class JsCache(Importer):
def __init__(self, root):
Importer.__init__(self, root=root, extension='js')
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment