Skip to content

Commit

Permalink
made process=False the default
Browse files Browse the repository at this point in the history
  • Loading branch information
fcollman committed Oct 20, 2024
1 parent 6d0063b commit 090d125
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion navis/utils/cv.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ def return_navis(func, only_on_kwarg=False):
@functools.wraps(func)
def wrapper(*args, **kwargs):
ret_navis = kwargs.pop("as_navis", False)
process = kwargs.pop("process", True)
process = kwargs.pop("process", False)
res = func(*args, **kwargs)

if not only_on_kwarg or ret_navis:
Expand Down

0 comments on commit 090d125

Please sign in to comment.