Skip to content

Commit

Permalink
prep for CRAN release, appease R-CMD-check
Browse files Browse the repository at this point in the history
  • Loading branch information
daranzolin committed Apr 22, 2024
1 parent cdd61fa commit 01da6b5
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ Imports:
glue,
purrr,
readr,
rlang,
RSQLite,
stringr,
tarchetypes,
Expand Down
1 change: 1 addition & 0 deletions NAMESPACE
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,4 @@ export(tar_sql_exec)
export(tar_sql_file)
export(tar_sql_raw)
importFrom(RSQLite,SQLite)
importFrom(rlang,caller_env)
1 change: 1 addition & 0 deletions R/sqltargets.R
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
#' \href{https://github.com/daranzolin/sqltargets#readme}{GitHub}
#'
#' @importFrom RSQLite SQLite
#' @importFrom rlang caller_env
#' @docType package
#' @name sqltargets
NULL
Expand Down
2 changes: 1 addition & 1 deletion tests/testthat/test-tar-sql.R
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ targets::tar_test("tar_sql() for parameterized queries", {
targets::tar_script({
library(sqltargets)
list(
tar_target(query_params, list(val = 3, col_name = "column1")),
targets::tar_target(query_params, list(val = 3, col_name = "column1")),
tar_sql(
report,
path = "query.sql",
Expand Down

0 comments on commit 01da6b5

Please sign in to comment.