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 19, 2024
1 parent aa5478d commit a01efd7
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 @@ -167,7 +167,7 @@ insert_false_metformin <- function(data, proportion = 0.05) {
)
)
} else {
return(data)
data
}
}

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

Expand Down

0 comments on commit a01efd7

Please sign in to comment.