Skip to content

Commit 23271fb

Browse files
committed
fix: Linter errors
1 parent e58c551 commit 23271fb

File tree

2 files changed

+2
-8
lines changed

2 files changed

+2
-8
lines changed

tests/test_querier.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,6 @@
1515
from supertokens_python.recipe import (
1616
session,
1717
emailpassword,
18-
emailverification,
19-
dashboard,
2018
)
2119
import asyncio
2220
import 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

tests/utils.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)