File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
supertokens_python/recipe/emailverification/syncio Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 12
12
# License for the specific language governing permissions and limitations
13
13
# under the License.
14
14
15
- from typing import Any , Dict , Union , Optional
15
+ from typing import Any , Dict , Optional , Union
16
16
17
17
from supertokens_python .async_to_sync_wrapper import sync
18
18
from supertokens_python .recipe .emailverification .types import EmailTemplateVars
@@ -67,9 +67,9 @@ def unverify_email(
67
67
email : Optional [str ] = None ,
68
68
user_context : Union [None , Dict [str , Any ]] = None ,
69
69
):
70
- from supertokens_python .recipe .emailverification .asyncio import is_email_verified
70
+ from supertokens_python .recipe .emailverification .asyncio import unverify_email
71
71
72
- return sync (is_email_verified (user_id , email , user_context ))
72
+ return sync (unverify_email (user_id , email , user_context ))
73
73
74
74
75
75
def send_email (
You can’t perform that action at this time.
0 commit comments