Skip to content

Commit

Permalink
fix: remove return since it's not needed
Browse files Browse the repository at this point in the history
Co-authored-by: Luke W. Johnston <[email protected]>
  • Loading branch information
signekb and lwjohnst86 committed Jun 25, 2024
1 parent 17f4d67 commit 8a2f966
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions data-raw/simulate-data.R
Original file line number Diff line number Diff line change
Expand Up @@ -316,7 +316,7 @@ insert_false_metformin <- function(data, proportion = 0.05) {
)
)
} else {
return(data)
data
}
}

Expand All @@ -339,7 +339,7 @@ insert_false_drug_names <- function(data, proportion = 0.05) {
)
)
} else {
return(data)
data
}
}

Expand Down

0 comments on commit 8a2f966

Please sign in to comment.