HBNetwork / python-decouple

Strict separation of config from code.
MIT License
2.79k stars 192 forks source link

Added get method in AutoConfig class #143

Closed mjthecoder65 closed 1 year ago

mjthecoder65 commented 2 years ago

Added a method called get() in AutoConfig class. It will basically produce the same results as calling config() object, but more intuitive because get is an action. Therefore instead of just calling config object, we call config's get method: config.get()

henriquebastos commented 1 year ago

config was designed to be a callable.