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 15
15
from supertokens_python .recipe import (
16
16
session ,
17
17
emailpassword ,
18
- emailverification ,
19
- dashboard ,
20
18
)
21
19
import asyncio
22
20
import respx
@@ -45,8 +43,6 @@ async def test_network_call_is_retried_as_expected():
45
43
[
46
44
session .init (),
47
45
emailpassword .init (),
48
- emailverification .init (mode = "OPTIONAL" ),
49
- dashboard .init (),
50
46
]
51
47
)
52
48
args ["supertokens_config" ] = SupertokensConfig ("http://localhost:6789" )
@@ -102,8 +98,6 @@ async def test_parallel_calls_have_independent_counters():
102
98
[
103
99
session .init (),
104
100
emailpassword .init (),
105
- emailverification .init (mode = "OPTIONAL" ),
106
- dashboard .init (),
107
101
]
108
102
)
109
103
init (** args ) # type: ignore
Original file line number Diff line number Diff line change @@ -365,13 +365,13 @@ def email_verify_token_request(
365
365
environ ["SUPERTOKENS_ENV" ] = "testing"
366
366
367
367
368
- def setup_function (_ ):
368
+ def setup_function (_ : Any ):
369
369
reset ()
370
370
clean_st ()
371
371
setup_st ()
372
372
373
373
374
- def teardown_function (_ ):
374
+ def teardown_function (_ : Any ):
375
375
reset ()
376
376
clean_st ()
377
377
You can’t perform that action at this time.
0 commit comments