Skip to content

Commit

Permalink
Small bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
Yngve S. Kristiansen committed Nov 29, 2023
1 parent 4f25bc4 commit 9cc13a4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
1 change: 0 additions & 1 deletion res2df/fipreports.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@

from .common import parse_month, write_dframe_stdout_file
from .res2csvlogger import getLogger_res2csv

from .resdatafiles import ResdataFiles

logger = logging.getLogger(__name__)
Expand Down
7 changes: 4 additions & 3 deletions res2df/satfunc.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,14 @@
except ImportError:
pass

from .common import comment_formatter
from .common import df2res as common_df2res
from .common import fill_reverse_parser as common_fill_reverse_parser
from .common import (
comment_formatter,
handle_wanted_keywords,
keyworddata_to_df,
write_dframe_stdout_file,
write_inc_stdout_file,
fill_reverse_parser as common_fill_reverse_parser,
)
from .inferdims import inject_xxxdims_ntxxx
from .res2csvlogger import getLogger_res2csv
Expand Down Expand Up @@ -266,7 +267,7 @@ def df2res(
"""
string = ""
string += df2res(
string += common_df2res(
satfunc_df,
keywords=keywords,
comments=comments,
Expand Down

0 comments on commit 9cc13a4

Please sign in to comment.