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
Right now, the config is an arbitrary dictionary. Making it a struct (or built through a function with well defined parameters) can allow it to be a bit safer. Instead of:
Using this would allow us to change the underlying mechanism for holding the data and communicating it, immunizing the user from those changes, as well as having more obvious errors earlier (can't call that function with an unknown param, for instance).
The text was updated successfully, but these errors were encountered:
Right now, the config is an arbitrary dictionary. Making it a struct (or built through a function with well defined parameters) can allow it to be a bit safer. Instead of:
You'd do
Using this would allow us to change the underlying mechanism for holding the data and communicating it, immunizing the user from those changes, as well as having more obvious errors earlier (can't call that function with an unknown param, for instance).
The text was updated successfully, but these errors were encountered: