Skip to content

Commit

Permalink
another bugfix oops
Browse files Browse the repository at this point in the history
  • Loading branch information
Yngve S. Kristiansen committed Nov 29, 2023
1 parent 9cc13a4 commit d1eca38
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions res2df/vfp/_vfp.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,9 @@
except ImportError:
pass

from ..common import comment_formatter, write_dframe_stdout_file, write_inc_stdout_file
from ..common import comment_formatter
from ..common import fill_reverse_parser as common_fill_reverse_parser
from ..common import write_dframe_stdout_file, write_inc_stdout_file
from ..res2csvlogger import getLogger_res2csv
from ..resdatafiles import ResdataFiles
from . import _vfpinj as vfpinj
Expand Down Expand Up @@ -482,7 +484,7 @@ def fill_parser(parser: argparse.ArgumentParser) -> argparse.ArgumentParser:

def fill_reverse_parser(parser: argparse.ArgumentParser) -> argparse.ArgumentParser:
"""Fill a parser for the operation dataframe -> resdata :term:`include file`"""
return fill_reverse_parser(parser, "VFPPROD, VFPINJ", "vfp.inc")
return common_fill_reverse_parser(parser, "VFPPROD, VFPINJ", "vfp.inc")


def vfp_main(args) -> None:
Expand Down

0 comments on commit d1eca38

Please sign in to comment.