@@ -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 "/recipe/session/remove"),
437+ NormalisedURLPath("/recipe/session/remove"),
438438 {"userId": user_id, "revokeAcrossAllTenants": 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 "/recipe/session/user"),
462+ NormalisedURLPath("/recipe/session/user"),
463463 {"userId": user_id, "fetchAcrossAllTenants": 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 "/recipe/session/user"),
646+ NormalisedURLPath("/recipe/session/user"),
647647 {"userId": user_id, "fetchAcrossAllTenants": 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 "/recipe/session/remove"),
978+ NormalisedURLPath("/recipe/session/remove"),
979979 {"userId": user_id, "revokeAcrossAllTenants": revoke_across_all_tenants},
980980 user_context=user_context,
981981 )
0 commit comments