Context
As for right now, the configuration object is being called in each command-set. This isn't how to used be according to python conventions.
Solution
The solution is to pass the config object as a context variable from the main command to the sub-commands (According to 'click' documentations).
Context
As for right now, the configuration object is being called in each command-set. This isn't how to used be according to python conventions.
Solution
The solution is to pass the config object as a context variable from the main command to the sub-commands (According to 'click' documentations).