Skip to content

Commit

Permalink
remove variable that's never inspected
Browse files Browse the repository at this point in the history
but `dbiBind()` still needs to run
  • Loading branch information
wibeasley committed Jan 14, 2024
1 parent 8125701 commit 23c2c43
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/retrieve-key-value.R
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ retrieve_key_value <- function(
base::tryCatch(
expr = {
query <- DBI::dbSendQuery(channel, sql)
bind <- DBI::dbBind(query, list(project_name, key))
DBI::dbBind(query, list(project_name, key))
ds_value <- DBI::dbFetch(query)

}, finally = {
Expand Down

0 comments on commit 23c2c43

Please sign in to comment.