Skip to content

Commit

Permalink
STY: fix ruff linting failure
Browse files Browse the repository at this point in the history
  • Loading branch information
ErichSuter committed Oct 8, 2024
1 parent 175ae07 commit 2a144ec
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/xtgeo/well/blocked_wells.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ def _from_roxar(self, *args, **kwargs): # pragma: no cover
project = args[0]
gname = args[1]
bwname = args[2]
lognames = kwargs.get("lognames", None)
lognames = kwargs.get("lognames")
ijk = kwargs.get("ijk", True)

_blockedwells_roxapi.import_bwells_roxapi(
Expand Down
2 changes: 1 addition & 1 deletion src/xtgeo/well/well1.py
Original file line number Diff line number Diff line change
Expand Up @@ -703,7 +703,7 @@ def to_roxar(self, *args, **kwargs):
trajectory = kwargs.get("trajectory", "Drilled trajectory")
logrun = kwargs.get("logrun", "log")
realisation = kwargs.get("realisation", 0)
update_option = kwargs.get("update_option", None)
update_option = kwargs.get("update_option")

logger.debug("Not in use: realisation %s", realisation)

Expand Down
2 changes: 1 addition & 1 deletion src/xtgeo/xyz/_xyz_io.py
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ def to_file(
KeyError if pfilter is set and key(s) are invalid
"""
filter_deprecated = kwargs.get("filter", None)
filter_deprecated = kwargs.get("filter")
if filter_deprecated is not None and pfilter is None:
pfilter = filter_deprecated

Expand Down

0 comments on commit 2a144ec

Please sign in to comment.