We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aead4a0 commit 03f7899Copy full SHA for 03f7899
1 file changed
src/openhound_github/resources/enterprise.py
@@ -69,7 +69,7 @@ def enterprise(ctx: SourceContext):
69
name="enterprise_organizations", columns=EnterpriseOrganization, parallelized=True
70
)
71
def enterprise_organizations(enterprise_data: Enterprise, ctx: SourceContext):
72
- orgs = enterprise_data.organizations.get("nodes", [])
+ orgs = (enterprise_data.organizations or {}).get("nodes", [])
73
for org in orgs:
74
yield {
75
**org,
0 commit comments