Skip to content

Commit

Permalink
Fixed a missing value in eesapi_url
Browse files Browse the repository at this point in the history
  • Loading branch information
rmbielby committed Aug 30, 2024
1 parent 30fa159 commit 643e5ba
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion R/eesapi_url.R
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,8 @@ eesapi_url <- function(
),
ifelse(
!is.null(dataset_version),
paste0("?data-version=",dataset_version)
paste0("?data-version=",dataset_version),

Check notice

Code scanning / lintr

Commas should always have a space after. Note

Commas should always have a space after.
""
)
)
}

0 comments on commit 643e5ba

Please sign in to comment.