You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Use a multi inheritance method and a Dataset_constructor module to define the Dataset class.
Here is a starting point:
from metobs_toolkit.datasetbase import DatasetBase
from metobs_toolkit.dataset_core import DatasetUserCore
from metobs_toolkit.dataset_settings_updater import DatasetSettingsCore
#Use multiple inheritance, so the full Dataset class is splid over mutliple
# child modules
class Dataset(DatasetBase, DatasetUserCore, DatasetSettingsCore()):
def __init__(self):
DatasetBase.__init__() #set the attributes
DatasetUserCore().__init__()
The text was updated successfully, but these errors were encountered:
Use a multi inheritance method and a Dataset_constructor module to define the Dataset class.
Here is a starting point:
The text was updated successfully, but these errors were encountered: