Skip to content

Commit 5c897cf

Browse files
committed
Eliminate missing global variable warning
1 parent 766cfc0 commit 5c897cf

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

R/pubchem.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -467,7 +467,7 @@ pc_prop <- function(cid, properties = NULL, verbose = getOption("verbose"), ...)
467467
return(data.frame())
468468
}
469469
out <- cont$PropertyTable[[1]]
470-
out <- out |> dplyr::mutate(CID = x) |> dplyr::relocate(CID)
470+
out <- out |> dplyr::mutate("CID" = x) |> dplyr::relocate("CID")
471471
return(out)
472472
} else {
473473
return(data.frame())

0 commit comments

Comments
 (0)