We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 44264a3 + 5c21383 commit 0600140Copy full SHA for 0600140
1 file changed
src/openhound_github/resources/organization.py
@@ -1675,10 +1675,11 @@ def scim_users(ctx: SourceContext):
1675
paginator=scim_paginator,
1676
data_selector="Resources",
1677
):
1678
- yield {
1679
- **page,
1680
- "org_login": org_name,
1681
- }
+ for user in page:
+ yield {
+ **user,
+ "org_login": org_name,
1682
+ }
1683
1684
1685
def organization_resources(ctx: SourceContext):
0 commit comments