File tree Expand file tree Collapse file tree 2 files changed +2
-8
lines changed
Expand file tree Collapse file tree 2 files changed +2
-8
lines changed Original file line number Diff line number Diff line change 1515from supertokens_python .recipe import (
1616 session ,
1717 emailpassword ,
18- emailverification ,
19- dashboard ,
2018)
2119import asyncio
2220import respx
@@ -45,8 +43,6 @@ async def test_network_call_is_retried_as_expected():
4543 [
4644 session .init (),
4745 emailpassword .init (),
48- emailverification .init (mode = "OPTIONAL" ),
49- dashboard .init (),
5046 ]
5147 )
5248 args ["supertokens_config" ] = SupertokensConfig ("http://localhost:6789" )
@@ -102,8 +98,6 @@ async def test_parallel_calls_have_independent_counters():
10298 [
10399 session .init (),
104100 emailpassword .init (),
105- emailverification .init (mode = "OPTIONAL" ),
106- dashboard .init (),
107101 ]
108102 )
109103 init (** args ) # type: ignore
Original file line number Diff line number Diff line change @@ -365,13 +365,13 @@ def email_verify_token_request(
365365 environ ["SUPERTOKENS_ENV" ] = "testing"
366366
367367
368- def setup_function (_ ):
368+ def setup_function (_ : Any ):
369369 reset ()
370370 clean_st ()
371371 setup_st ()
372372
373373
374- def teardown_function (_ ):
374+ def teardown_function (_ : Any ):
375375 reset ()
376376 clean_st ()
377377
You can’t perform that action at this time.
0 commit comments