Skip to content

Commit

Permalink
style(get_eglv_measurements): names as char
Browse files Browse the repository at this point in the history
  • Loading branch information
dimfalk committed Dec 27, 2024
1 parent 5384c92 commit ef91fc2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: NRWgauges
Title: Web-scraping gauge (meta-)data from various providers in NRW, Germany
Version: 0.3.0
Version: 0.3.1
Date: 2024-12-27
Authors@R:
person("Dimitri", "Falk", , "[email protected]", role = c("aut", "cre"))
Expand Down
4 changes: 2 additions & 2 deletions R/get_eglv_measurements.R
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,8 @@ get_eglv_measurements <- function(x = NULL,
for (i in 1:n) {

# query definition
query <- list(serial = ids[i],
unit_name = par)
query <- list("serial" = ids[i],
"unit_name" = par)

# send request
r_raw <- httr::GET(base_url, query = query)
Expand Down

0 comments on commit ef91fc2

Please sign in to comment.