Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Unpin mypy #9996

Merged
merged 1 commit into from
Feb 7, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ dev = [
]
style = ["pre-commit"]
types = [
"mypy<1.15.0",
"mypy",
"types-lxml",
"types-requests",
"types-PyYAML",
Expand Down
4 changes: 2 additions & 2 deletions src/ert/config/_get_num_cpu.py
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ def _split_line(line: str) -> Iterator[str]:
['ALLPROPS', '/']
"""
value = ""
inside_str = None
inside_str = False
for char in line:
if char == "'":
# end of str
Expand All @@ -199,7 +199,7 @@ def _split_line(line: str) -> Iterator[str]:
if value:
yield value
value = ""
inside_str = char
inside_str = True
elif inside_str:
value += char
elif value and value[-1] == "-" and char == "-":
Expand Down
4 changes: 2 additions & 2 deletions src/ert/plugins/hook_implementations/help_resources.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import ert


@ert.plugin(name="ert") # type: ignore
def help_links():
@ert.plugin(name="ert")
def help_links() -> dict[str, str]:
return {"GitHub page": "https://github.com/equinor/ert"}
17 changes: 9 additions & 8 deletions src/ert/plugins/hook_implementations/workflows/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
from __future__ import annotations

from typing import TYPE_CHECKING

import ert

from .csv_export import CSVExportJob
Expand All @@ -7,25 +11,22 @@
from .gen_data_rft_export import GenDataRFTCSVExportJob
from .misfit_preprocessor import MisfitPreprocessor

if TYPE_CHECKING:
from ert.plugins.workflow_config import WorkflowConfigs


@ert.plugin(name="ert") # type: ignore
def legacy_ertscript_workflow(config):
@ert.plugin(name="ert")
def legacy_ertscript_workflow(config: WorkflowConfigs) -> None:
workflow = config.add_workflow(ExportMisfitDataJob, "EXPORT_MISFIT_DATA")
workflow.description = ExportMisfitDataJob.__doc__
workflow.category = "observations.correlation"

workflow = config.add_workflow(ExportRunpathJob, "EXPORT_RUNPATH")
workflow.description = ExportRunpathJob.__doc__

workflow = config.add_workflow(DisableParametersUpdate, "DISABLE_PARAMETERS")
workflow.description = DisableParametersUpdate.__doc__

workflow = config.add_workflow(MisfitPreprocessor, "MISFIT_PREPROCESSOR")
workflow.description = MisfitPreprocessor.__doc__
workflow.category = "observations.correlation"

workflow = config.add_workflow(CSVExportJob, "CSV_EXPORT")
workflow.description = CSVExportJob.__doc__

workflow = config.add_workflow(GenDataRFTCSVExportJob, "GEN_DATA_RFT")
workflow.description = GenDataRFTCSVExportJob.__doc__