Skip to content

Commit

Permalink
browse problem/fix
Browse files Browse the repository at this point in the history
  • Loading branch information
wlandau committed Dec 23, 2024
1 parent c0d69fc commit d049202
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions R/class_meta.R
Original file line number Diff line number Diff line change
Expand Up @@ -75,11 +75,11 @@ meta_class <- R6::R6Class(
.subset2(.subset2(.subset2(self, "database"), "get_row")(name), "data")
},
hash_deps = function(deps, pipeline) {
hashes <- lapply(
X = sort_chr(deps),
FUN = self$hash_dep,
pipeline = pipeline
)

browser()

deps <- sort_chr(deps)
hashes <- lapply(X = deps, FUN = self$hash_dep, pipeline = pipeline)
names(hashes) <- deps
hashes <- unlist(hashes, use.names = TRUE)
string <- paste(c(names(hashes), hashes), collapse = "")
Expand Down

0 comments on commit d049202

Please sign in to comment.