Skip to content

Commit

Permalink
Space fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jacgrout committed May 3, 2024
1 parent 2a08d28 commit cb21a2f
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions R/create_waiting_list.R
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,7 @@ create_waiting_list <- function(n, mean_arrival_rate, mean_wait,
#simulate non-zero waitlist at end of simulated period.
if (limit_removals) {
test_df$removal_date[test_df$removal_date >
(as.Date(start_date, format = "%Y-%m-%d") + n)]
<- NA
(as.Date(start_date, format = "%Y-%m-%d") + n)] <- NA

Check warning on line 54 in R/create_waiting_list.R

View workflow job for this annotation

GitHub Actions / lint

file=R/create_waiting_list.R,line=54,col=26,[indentation_linter] Indentation should be 27 spaces but is 26 spaces.
test_df$wait_length[is.na(test_df$removal_date)] <- NA
}

Expand Down

0 comments on commit cb21a2f

Please sign in to comment.