Skip to content

Commit

Permalink
fix bottleneck median kwarg
Browse files Browse the repository at this point in the history
  • Loading branch information
scexao5 committed Apr 29, 2024
1 parent 513645b commit 1295573
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vampires_dpp/image_processing.py
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ def collapse_cube(
# suppress all-nan axis warnings
with warnings.catch_warnings():
warnings.simplefilter("ignore")
frame = bn.nanmedian(cube, axis=0, overwrite_input=True)
frame = bn.nanmedian(cube, axis=0)
case "mean":
# suppress all-nan axis warnings
with warnings.catch_warnings():
Expand Down

0 comments on commit 1295573

Please sign in to comment.