Skip to content

Commit

Permalink
Add missing Optionals
Browse files Browse the repository at this point in the history
  • Loading branch information
kwinkunks committed Jun 5, 2023
1 parent 7443949 commit 440ddd9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions ecl2df/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -627,8 +627,8 @@ def df2ecl(
def generic_ecltable(
dframe: pd.DataFrame,
keyword: str,
comment: str = None,
renamer: Dict[str, str] = None,
comment: Optional[str] = None,
renamer: Optional[Dict[str, str]] = None,
drop_trailing_columns: bool = True,
) -> str:
"""Construct a typical Eclipse table for data following
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"ecl",
"numpy",
"opm>=2020.10.2", # NB: Pypi versions.
"pandas",
"pandas<2.0",
"pyarrow",
"pyyaml>=5.1",
"treelib",
Expand Down

0 comments on commit 440ddd9

Please sign in to comment.