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
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.
The text was updated successfully, but these errors were encountered:
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.
The text was updated successfully, but these errors were encountered: