Skip to content

Commit

Permalink
Merge pull request #65 from MichaelChirico/patch-1
Browse files Browse the repository at this point in the history
Fix bug in glue string (missing '}')
  • Loading branch information
gertjanssenswillen committed Jul 4, 2023
2 parents 5c97f56 + d7e51e6 commit e16c724
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/detect_resource_inconsistencies.R
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ detect_resource_inconsistencies.eventlog <- function(eventlog, filter_condition

if(any(!(lifecycle_labels(eventlog) %in% allowed_lifecycles))) {
stop(glue::glue("Lifecycle not conform standard lifecycle model. \nAllowed lifecycles: {str_c(allowed_lifecycles, collapse =', ')}.
\nNon-standard lifecycles: {str_subset(lifecycle_labels(eventlog), allowed_lifecycles, negate = TRUE)
\nNon-standard lifecycles: {str_subset(lifecycle_labels(eventlog), allowed_lifecycles, negate = TRUE)}
\nTry function 'standardize_lifecycle' to fix."))
}
# Store the number of cases for output
Expand Down

0 comments on commit e16c724

Please sign in to comment.