Skip to content

Commit

Permalink
fix: match error raised by new method (#123)
Browse files Browse the repository at this point in the history
match error raised by new method
  • Loading branch information
bertrmz authored Dec 12, 2024
1 parent f168b8c commit a9aa95f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion passageidentity/passage.py
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ def createMagicLink( # noqa: N802
args.user_id = user_id
args.channel = magic_link_attrs_dict.get("channel") or MagicLinkChannel.EMAIL
else:
msg = "Could not create a magic link for this app: must provide one of: email, phone, user_id"
msg = "Could not create a magic link for this app: must provide one of: email, phone, userID"
raise TypeError(msg)

args.send = magic_link_attrs_dict.get("send") or False
Expand Down

0 comments on commit a9aa95f

Please sign in to comment.