Fixed case of initilize method for DBClient

This commit is contained in:
2026-01-27 14:52:26 +00:00
parent 0ca9a9c7bc
commit 078cec0598

View File

@@ -1,6 +1,6 @@
client <- NULL
Initialize <- function(client) {
initialize <- function(client) {
if (is.null(client) || !is.R6(client) || inherits(client, "DBClient")) {
stop("DBClient instance required!")
}