Skip to content

Commit ce54dc2

Browse files
authored
fix type hint for link_user_account (#552)
2 parents bd022eb + 5c2c90d commit ce54dc2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

auth0/management/users.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -348,7 +348,7 @@ def unlink_user_account(self, id: str, provider: str, user_id: str) -> Any:
348348
url = self._url(f"{id}/identities/{provider}/{user_id}")
349349
return self.client.delete(url)
350350

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

0 commit comments

Comments
 (0)