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
Use readepi:::dhis2_make_api_request() function to view the list of
available attributes")
This error message recommends using an internal function via :::, which is not something we should encourage. It is bad practice in R in general, and it mean that function is now effectively part of our public interface if we want to do changes.
Either this function can be called by users and it should be exported, and it shouldn't be called by users and we should propose an alternative in the error message
The text was updated successfully, but these errors were encountered:
readepi/R/check_dhis2_attributes-helpers.R
Lines 108 to 110 in b24e7e5
This error message recommends using an internal function via
:::
, which is not something we should encourage. It is bad practice in R in general, and it mean that function is now effectively part of our public interface if we want to do changes.Either this function can be called by users and it should be exported, and it shouldn't be called by users and we should propose an alternative in the error message
The text was updated successfully, but these errors were encountered: