Skip to content

Commit

Permalink
fix type hint for link_user_account
Browse files Browse the repository at this point in the history
  • Loading branch information
tzzh committed Nov 16, 2023
1 parent bd022eb commit 5c2c90d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion auth0/management/users.py
Original file line number Diff line number Diff line change
Expand Up @@ -348,7 +348,7 @@ def unlink_user_account(self, id: str, provider: str, user_id: str) -> Any:
url = self._url(f"{id}/identities/{provider}/{user_id}")
return self.client.delete(url)

def link_user_account(self, user_id: str, body: dict[str, Any]) -> dict[str, Any]:
def link_user_account(self, user_id: str, body: dict[str, Any]) -> list[dict[str, Any]]:
"""Link user accounts.
Links the account specified in the body (secondary account) to the
Expand Down

0 comments on commit 5c2c90d

Please sign in to comment.