~milo/lava-tool/lava-169

« back to all changes in this revision

Viewing changes to lava/config.py

  • Committer: Milo Casagrande
  • Date: 2013-07-26 08:10:16 UTC
  • Revision ID: milo@ubuntu.com-20130726081016-ylm9t8xr1gvncypk
PEP8 and pylint fixes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
33
33
from lava.parameter import Parameter
34
34
from lava.tool.errors import CommandError
35
35
 
36
 
 
37
36
__all__ = ['Config', 'InteractiveConfig']
38
37
 
39
38
# Store for function calls to be made at exit time.
55
54
        call()
56
55
atexit.register(_run_at_exit)
57
56
 
 
57
 
58
58
class Config(object):
59
59
    """A generic config object."""
60
60