Skip to content

Commit

Permalink
Remove repr and eq
Browse files Browse the repository at this point in the history
These are provided by dataclass
  • Loading branch information
oyvindeide committed Aug 16, 2024
1 parent c1ec8e9 commit 15165f8
Showing 1 changed file with 0 additions and 30 deletions.
30 changes: 0 additions & 30 deletions src/ert/config/model_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -129,36 +129,6 @@ def from_dict(cls, config_dict: ConfigDict) -> "ModelConfig":
time_map=time_map,
)

def __repr__(self) -> str:
return (
"ModelConfig("
f"num_realizations={self.num_realizations}, "
f"history_source={self.history_source}, "
f"runpath_format_string={self.runpath_format_string}, "
f"jobname_format_string={self.jobname_format_string}, "
f"eclbase_format_string={self.eclbase_format_string}, "
f"gen_kw_export_name={self.gen_kw_export_name}, "
")"
)

def __str__(self) -> str:
return repr(self)

def __eq__(self, other: object) -> bool:
if not isinstance(other, ModelConfig):
return False
return all(
[
self.num_realizations == other.num_realizations,
self.history_source == other.history_source,
self.runpath_format_string == other.runpath_format_string,
self.jobname_format_string == other.jobname_format_string,
self.eclbase_format_string == other.eclbase_format_string,
self.gen_kw_export_name == other.gen_kw_export_name,
self.time_map == other.time_map,
]
)


def _replace_runpath_format(format_string: str) -> str:
format_string = format_string.replace("%d", "<IENS>", 1)
Expand Down

0 comments on commit 15165f8

Please sign in to comment.