https://groundwork.readthedocs.io/en/latest/quickstart.html
###Original Code###
from groundwork import App
if __name__== "__main__":
my_app = App()
my_app.plugins.activate(["GwPluginInfo"])
my_app.commands.start_cli()
#################
It should be ["GwPluginsInfo"]
https://groundwork.readthedocs.io/en/latest/commands.html
###Original Code###
from groundwork import App
from groundword.plugins import GwCommandInfo
my_app = App()
my_app.plugins.activate(["GwCommandInfo"])
my_app.commands.start_cli()
################
It should be " GwCommandsInfo"