Skip to content

Commit

Permalink
Merge pull request #97 from CDCgov/hot-fix-typo
Browse files Browse the repository at this point in the history
change call in eval config list to refer to path not dir
  • Loading branch information
kaitejohnson committed Jul 8, 2024
2 parents ce70b29 + 213385b commit ee98742
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/pre-commit.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,8 @@ jobs:
- uses: actions/setup-python@v5
with:
python-version: '3.12'
- uses: pre-commit/action@v3.0.1
- uses: actions/cache@v4
with:
path: |
~/.cache/R/renv
key: r-precommit-cache|${{ env.pythonLocation }}|${{ hashFiles('.pre-commit-config.yaml') }}
2 changes: 1 addition & 1 deletion src/write_eval_config.R
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ write_eval_config <- function(locations, forecast_dates,
baseline_score_table_dir = baseline_score_table_dir,
output_dir = output_dir,
hub_subdir = hub_subdir,
retro_rt_dir = retro_rt_dir,
retro_rt_path = retro_rt_path,
score_subdir = score_subdir,
raw_output_dir = raw_output_dir,
figure_dir = figure_dir,
Expand Down
3 changes: 2 additions & 1 deletion wweval/R/format_data_for_stan.R
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
#'
#' @param model_type string indicating which model we are getting data for
#' Options are `ww` or `hosp`
#' @param forecast_date string indicating the forecast date
#' @param forecast_date string indicating the forecast date in ISO 8601 convention
#' e.g. YYYY-MM-DD
#' @param forecast_time integer indicating the number of days to make a forecast
#' for
#' @param calibration_time integer indicating the max duration in days that
Expand Down

0 comments on commit ee98742

Please sign in to comment.