Skip to content

Commit

Permalink
Fixes #411
Browse files Browse the repository at this point in the history
  • Loading branch information
spsanderson committed Jan 27, 2023
1 parent 0a6aca4 commit 4ea84b8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions NEWS.md
Expand Up @@ -13,6 +13,7 @@ None
vectorization.
2. Fix #412 - Update all brownian motion functions to have an attribute of
`.motion_type`
3. Fix #411 - Drop the invisible return for `ts_vva_plot()`

# healthyR.ts 0.2.6

Expand Down
2 changes: 1 addition & 1 deletion R/ts-vva-plot.R
Expand Up @@ -97,7 +97,7 @@ ts_vva_plot <- function(.data, .date_col, .value_col){
)
)

return(invisible(output_list))
return(output_list)

}

Expand Down

0 comments on commit 4ea84b8

Please sign in to comment.