Skip to content

Commit

Permalink
refactor: Keep ev syncio functions minimalistic
Browse files Browse the repository at this point in the history
  • Loading branch information
KShivendu committed Aug 2, 2023
1 parent 4eed53e commit 758092b
Showing 1 changed file with 0 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -95,9 +95,6 @@ def create_email_verification_link(
tenant_id: Optional[str] = None,
user_context: Optional[Dict[str, Any]] = None,
):
if user_context is None:
user_context = {}

from supertokens_python.recipe.emailverification.asyncio import (
create_email_verification_link,
)
Expand All @@ -111,9 +108,6 @@ def send_email_verification_email(
tenant_id: Optional[str] = None,
user_context: Optional[Dict[str, Any]] = None,
):
if user_context is None:
user_context = {}

from supertokens_python.recipe.emailverification.asyncio import (
send_email_verification_email,
)
Expand Down

0 comments on commit 758092b

Please sign in to comment.