[core/themes] Add theme loading

Load a theme from a JSON file.
This commit is contained in:
Tobi-wan Kenobi 2016-12-08 09:44:05 +01:00
parent c44744fa50
commit 2399cf9af1
4 changed files with 52 additions and 2 deletions

View file

@ -8,4 +8,8 @@ class ModuleLoadError(BaseError):
"""Raised whenever loading a module fails"""
pass
class ThemeLoadError(BaseError):
"""Raised whenever loading a theme fails"""
pass
# vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4