@@ -484,9 +484,9 @@ async def email_exists_get(
484484 api_options : APIOptions ,
485485 user_context : Dict [str , Any ],
486486 ):
487- response_Dict = {"custom" : True }
487+ response_dict = {"custom" : True }
488488 api_options .response .set_status_code (203 )
489- api_options .response .set_json_content (response_Dict )
489+ api_options .response .set_json_content (response_dict )
490490 return await original_func (email , tenant_id , api_options , user_context )
491491
492492 original_implementation .email_exists_get = email_exists_get
@@ -514,9 +514,9 @@ async def email_exists_get(
514514 url = "/auth/signup/email/exists?email=test@example.com" ,
515515 )
516516
517- Dict_response = json .loads (response .text )
517+ dict_response = json .loads (response .text )
518518 assert response .status_code == 203
519- assert Dict_response ["custom" ]
519+ assert dict_response ["custom" ]
520520
521521
522522@mark .asyncio
@@ -539,9 +539,9 @@ async def test_optional_session(driver_config_client: TestClient[Litestar]):
539539 url = "handle-session-optional" ,
540540 )
541541
542- Dict_response = json .loads (response .text )
542+ dict_response = json .loads (response .text )
543543 assert response .status_code == 200
544- assert Dict_response ["s" ] == "empty session"
544+ assert dict_response ["s" ] == "empty session"
545545
546546
547547@mark .parametrize (
0 commit comments