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 1212# License for the specific language governing permissions and limitations
1313# under the License.
1414
15- from typing import Any , Dict , Union , Optional
15+ from typing import Any , Dict , Optional , Union
1616
1717from supertokens_python .async_to_sync_wrapper import sync
1818from supertokens_python .recipe .emailverification .types import EmailTemplateVars
@@ -67,9 +67,9 @@ def unverify_email(
6767 email : Optional [str ] = None ,
6868 user_context : Union [None , Dict [str , Any ]] = None ,
6969):
70- from supertokens_python .recipe .emailverification .asyncio import is_email_verified
70+ from supertokens_python .recipe .emailverification .asyncio import unverify_email
7171
72- return sync (is_email_verified (user_id , email , user_context ))
72+ return sync (unverify_email (user_id , email , user_context ))
7373
7474
7575def send_email (
You can’t perform that action at this time.
0 commit comments