Skip to content

Commit

Permalink
remove pipe
Browse files Browse the repository at this point in the history
  • Loading branch information
adokter committed Jan 10, 2025
1 parent af246a5 commit f5c3d60
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/as.vpts.R
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ as.vpts <- function(data) {
validate_vpts(data)

# sort by datetime and height
data |> dplyr::arrange(datetime, height) -> data
data <- dplyr::arrange(data, datetime, height)

height <- datetime <- source_file <- radar <- NULL

Expand Down

0 comments on commit f5c3d60

Please sign in to comment.