Skip to content

Commit 2bc2eb4

Browse files
committed
adding dev-v0.18.9 tag to this commit to ensure building
1 parent 3e2718c commit 2bc2eb4

File tree

2 files changed

+6
-10
lines changed

2 files changed

+6
-10
lines changed

html/supertokens_python/recipe/session/session_functions.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -434,7 +434,7 @@ <h1 class="title">Module <code>supertokens_python.recipe.session.session_functio
434434

435435
if revoke_across_all_tenants:
436436
response = await recipe_implementation.querier.send_post_request(
437-
NormalisedURLPath(f&#34;/recipe/session/remove&#34;),
437+
NormalisedURLPath(&#34;/recipe/session/remove&#34;),
438438
{&#34;userId&#34;: user_id, &#34;revokeAcrossAllTenants&#34;: revoke_across_all_tenants},
439439
user_context=user_context,
440440
)
@@ -459,7 +459,7 @@ <h1 class="title">Module <code>supertokens_python.recipe.session.session_functio
459459

460460
if fetch_across_all_tenants:
461461
response = await recipe_implementation.querier.send_get_request(
462-
NormalisedURLPath(f&#34;/recipe/session/user&#34;),
462+
NormalisedURLPath(&#34;/recipe/session/user&#34;),
463463
{&#34;userId&#34;: user_id, &#34;fetchAcrossAllTenants&#34;: fetch_across_all_tenants},
464464
user_context=user_context,
465465
)
@@ -643,7 +643,7 @@ <h2 class="section-title" id="header-functions">Functions</h2>
643643

644644
if fetch_across_all_tenants:
645645
response = await recipe_implementation.querier.send_get_request(
646-
NormalisedURLPath(f&#34;/recipe/session/user&#34;),
646+
NormalisedURLPath(&#34;/recipe/session/user&#34;),
647647
{&#34;userId&#34;: user_id, &#34;fetchAcrossAllTenants&#34;: fetch_across_all_tenants},
648648
user_context=user_context,
649649
)
@@ -975,7 +975,7 @@ <h2 class="section-title" id="header-functions">Functions</h2>
975975

976976
if revoke_across_all_tenants:
977977
response = await recipe_implementation.querier.send_post_request(
978-
NormalisedURLPath(f&#34;/recipe/session/remove&#34;),
978+
NormalisedURLPath(&#34;/recipe/session/remove&#34;),
979979
{&#34;userId&#34;: user_id, &#34;revokeAcrossAllTenants&#34;: revoke_across_all_tenants},
980980
user_context=user_context,
981981
)

html/supertokens_python/recipe/thirdparty/providers/custom.html

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -288,9 +288,7 @@ <h1 class="title">Module <code>supertokens_python.recipe.thirdparty.providers.cu
288288
async def default_generate_fake_email(
289289
_tenant_id: str, third_party_user_id: str, _: Dict[str, Any]
290290
) -&gt; str:
291-
return (
292-
f&#34;{third_party_user_id}.{input_config.third_party_id}@stfakeemail.supertokens.com&#34;
293-
)
291+
return f&#34;{third_party_user_id}.{input_config.third_party_id}@stfakeemail.supertokens.com&#34;
294292

295293
input_config.generate_fake_email = default_generate_fake_email
296294

@@ -800,9 +798,7 @@ <h2 class="section-title" id="header-classes">Classes</h2>
800798
async def default_generate_fake_email(
801799
_tenant_id: str, third_party_user_id: str, _: Dict[str, Any]
802800
) -&gt; str:
803-
return (
804-
f&#34;{third_party_user_id}.{input_config.third_party_id}@stfakeemail.supertokens.com&#34;
805-
)
801+
return f&#34;{third_party_user_id}.{input_config.third_party_id}@stfakeemail.supertokens.com&#34;
806802

807803
input_config.generate_fake_email = default_generate_fake_email
808804

0 commit comments

Comments
 (0)