Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

BUG: Avoid error when initial transform contains multiple files #397

Merged
merged 1 commit into from
Mar 30, 2024

Conversation

cookpa
Copy link
Member

@cookpa cookpa commented Mar 30, 2024

Fixes #389

Also refactored a bit for readability, changing a block of the form

if (not error) {

  # hundreds of lines

}
else {
  stop("error")
}

to

if (error) {
  stop("error")
}
# rest of code

@cookpa cookpa mentioned this pull request Mar 30, 2024
@cookpa cookpa merged commit 11d1799 into master Mar 30, 2024
1 check passed
@cookpa cookpa deleted the init_transform_check branch March 30, 2024 13:35
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

R version issues
1 participant