Skip to content

Commit

Permalink
Merge branch 'OHDSI:duckdb2' into duckdb2
Browse files Browse the repository at this point in the history
  • Loading branch information
msuchard authored Dec 16, 2024
2 parents 17ddc53 + c38f95f commit 18ac782
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion R/Object.R
Original file line number Diff line number Diff line change
Expand Up @@ -453,7 +453,9 @@ isAndromeda <- function(x) {
#'
#' @export
isValidAndromeda <- function(x) {
if(!isAndromeda(x)) rlang::abort(paste(deparse(substitute(x)), "is not an Andromeda object."))
if (!isAndromeda(x)) {
rlang::abort(paste(deparse(substitute(x)), "is not an Andromeda object."))
}
return(duckdb::dbIsValid(x))
}

Expand Down

0 comments on commit 18ac782

Please sign in to comment.