Skip to content

Commit

Permalink
Invisibly return NULL instead of printing NULL
Browse files Browse the repository at this point in the history
  • Loading branch information
Nick-Eagles committed May 31, 2024
1 parent 612baab commit 8006932
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion R/prep_imagej_coords.R
Original file line number Diff line number Diff line change
Expand Up @@ -163,5 +163,5 @@ prep_imagej_coords <- function(sample_info, out_dir) {
)
}

return(NULL)
return(invisible(NULL))
}
2 changes: 1 addition & 1 deletion R/prep_imagej_image.R
Original file line number Diff line number Diff line change
Expand Up @@ -104,5 +104,5 @@ prep_imagej_image <- function(sample_info, out_dir, lowres_max_size = 1200) {
)
}

return(NULL)
return(invisible(NULL))
}

0 comments on commit 8006932

Please sign in to comment.