Skip to content

Commit

Permalink
:update: fixing and simplifying drivers
Browse files Browse the repository at this point in the history
  • Loading branch information
b3j0f committed Nov 4, 2015
1 parent 70549ab commit 6cb0cfb
Show file tree
Hide file tree
Showing 21 changed files with 1,121 additions and 802 deletions.
4 changes: 2 additions & 2 deletions b3j0f/conf/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,10 @@
'Configuration', 'Category', 'Parameter',
'Configurable',
'ConfDriver',
'conf_paths', 'add_category'
'confpaths', 'add_category'
]

from .version import __version__
from .configurable import Configurable, conf_paths, add_category
from .configurable import Configurable, confpaths, add_category
from .model import Configuration, Category, Parameter
from .driver import ConfDriver
4 changes: 2 additions & 2 deletions b3j0f/conf/configurable/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
# --------------------------------------------------------------------


__all__ = ['Configurable', 'conf_paths', 'add_category']
__all__ = ['Configurable', 'confpaths', 'add_category']

from .core import Configurable
from .decorator import conf_paths, add_category
from .decorator import confpaths, add_category

0 comments on commit 6cb0cfb

Please sign in to comment.