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
As mentioned in #163 (review), I'm a little unhappy with how Config has some client-specific attributes, but not all. IMO it'd be better architecture to have a "global" Config object that exposes client-specific configuration attributes via some sort of dynamic, namespaced mechanism. Sorta like:
classConfig:
...
forclient_classinCLIENT_CLASSES:
Config.add_client_class(client_class) # This would add attributes from each client in a namespace, e.g. `Config.http_timeout`
The text was updated successfully, but these errors were encountered:
As mentioned in #163 (review), I'm a little unhappy with how
Config
has some client-specific attributes, but not all. IMO it'd be better architecture to have a "global"Config
object that exposes client-specific configuration attributes via some sort of dynamic, namespaced mechanism. Sorta like:The text was updated successfully, but these errors were encountered: