Files
opm-common/python/sunbeam/config.py
2017-01-13 12:52:50 +01:00

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()'