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
Now configs are read only, no need to create machinery to mantain wierd cases.
Now config (Settings) creates on import time, with some singletones raises problem of depending on import order.
Solution:
make separate module common
move all config related code from common.py to config.py
create config not on reading time, use class or function
look at singletones, maybe no need to use this antipattern
The text was updated successfully, but these errors were encountered:
Now configs are read only, no need to create machinery to mantain wierd cases.
Now config (Settings) creates on import time, with some singletones raises problem of depending on import order.
Solution:
common
The text was updated successfully, but these errors were encountered: