Skip to content

Commit

Permalink
Import MeasuredData through ert
Browse files Browse the repository at this point in the history
The ert import structure is going to change to conform to pep8's
"modules should explicitly declare the names in their public API using
the __all__ attribute. [...] Other modules must not rely on indirect
access to such imported names unless they are an explicitly documented
part of the containing module's API, such as os.path".
  • Loading branch information
eivindjahren committed Jul 29, 2022
1 parent 57ebb06 commit ca3c775
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion semeio/workflows/correlated_observations_scaling/cos.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import yaml
import configsuite

from ert_data.measured import MeasuredData
from ert import MeasuredData
from ert_shared.libres_facade import LibresFacade
from ert_shared.plugins.plugin_manager import hook_implementation
from semeio.communication import SemeioScript
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import yaml

from ert_data.measured import MeasuredData
from ert import MeasuredData
from ert_shared.libres_facade import LibresFacade
from ert_shared.plugins.plugin_manager import hook_implementation

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import argparse

from ert_data.measured import MeasuredData
from ert import MeasuredData
from ert_shared.libres_facade import LibresFacade
from ert_shared.plugins.plugin_manager import hook_implementation
from semeio.communication import SemeioScript
Expand Down

0 comments on commit ca3c775

Please sign in to comment.