You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The dots (...) in new_epi_df are unused. Misspelling argument names or forgetting the interface can result in swapping in defaults rather than raising an error. (E.g., new_epi_df(....., other_keys = "age_group") --- this is not the current way to set other_keys metadata, but will not raise an error, instead continuing on without setting this metadata.)
We should either remove the dots arg altogether, use it in some way, or check that it is empty. Last part could use ellipsis::check_dots_empty() if its messages are all right or rlang::dots_n(...) with custom messaging.
The text was updated successfully, but these errors were encountered:
The dots (
...
) innew_epi_df
are unused. Misspelling argument names or forgetting the interface can result in swapping in defaults rather than raising an error. (E.g.,new_epi_df(....., other_keys = "age_group")
--- this is not the current way to setother_keys
metadata, but will not raise an error, instead continuing on without setting this metadata.)We should either remove the dots arg altogether, use it in some way, or check that it is empty. Last part could use
ellipsis::check_dots_empty()
if its messages are all right orrlang::dots_n(...)
with custom messaging.The text was updated successfully, but these errors were encountered: