14 lines
314 B
Python
14 lines
314 B
Python
from os.path import isfile
|
|
import libsunbeam as lib
|
|
from .sunbeam import delegate
|
|
|
|
@delegate(lib.SummaryConfig)
|
|
class SummaryConfig(object):
|
|
def __repr__(self):
|
|
return 'SummaryConfig()'
|
|
|
|
@delegate(lib.EclipseConfig)
|
|
class EclipseConfig(object):
|
|
def __repr__(self):
|
|
return 'EclipseConfig()'
|