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

Fix indent issue #754

Merged
merged 2 commits into from
Oct 15, 2024
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
4 changes: 2 additions & 2 deletions src/subscript/check_swatinit/check_swatinit.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

import argparse
import sys
from typing import Any, Dict, List
from typing import Any, Dict, List, Union

import numpy as np
import pandas as pd
Expand Down Expand Up @@ -473,7 +473,7 @@ def _evaluate_pc(
swats: List[float],
scale_vert: List[float],
swls: List[float],
swus: List[float],
swus: Union[None, List[float]],
satfunc: pd.DataFrame,
sat_name: str = "SW",
pc_name: str = "PCOW",
Expand Down
6 changes: 4 additions & 2 deletions src/subscript/fmu_copy_revision/fmu_copy_revision.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,18 +21,20 @@

DESCRIPTION = """This is a simple interactive script for copying a FMU revision folder
with features:

1. Selective copy, i.e. avoid data that can be regenerated
2. Speed up copying by multithreading
3. Retain correct file dates and user permissions

Usage:

fmu_copy_revision (for menu based input)

* or *
or

fmu_copy_revision --source 21.0.0 --target some --profile 3 --threads 6 --cleanup

* or *
or

fmu_copy_revision --source 21.0.0 (...other options are defaulted)
"""
Expand Down