On line 32 in cli.py, from .auditor import Auditor, credentials, auditor.py then imports arcpy. If arcpy can't get a license, it raises a RuntimeError or ValueError (don't remember which).
Because these imports happen before our supervisor object is set up, it appears to bomb out silently.
Either create the supervisor before the rest of the imports, or move the imports that result in the arcpy import after the supervisor has been created.
On line 32 in
cli.py,from .auditor import Auditor, credentials,auditor.pythen imports arcpy. If arcpy can't get a license, it raises a RuntimeError or ValueError (don't remember which).Because these imports happen before our supervisor object is set up, it appears to bomb out silently.
Either create the supervisor before the rest of the imports, or move the imports that result in the arcpy import after the supervisor has been created.