@@ -149,7 +149,7 @@ def _exception_for_4xx_status(
149149 except ValueError :
150150 return HTTPError (
151151 f"Received a { status } error but it did not "
152- + f"include the expected JSON body: { raw_body } " ,
152+ f"include the expected JSON body: { raw_body } " ,
153153 status ,
154154 uri ,
155155 raw_body ,
@@ -293,7 +293,7 @@ async def factors(
293293 InvalidRequestError, HTTPError, MinFraudError,
294294 """
295295 return cast (
296- Factors ,
296+ " Factors" ,
297297 await self ._response_for (
298298 self ._factors_uri ,
299299 partial (Factors , self ._locales ),
@@ -332,7 +332,7 @@ async def insights(
332332 InvalidRequestError, HTTPError, MinFraudError,
333333 """
334334 return cast (
335- Insights ,
335+ " Insights" ,
336336 await self ._response_for (
337337 self ._insights_uri ,
338338 partial (Insights , self ._locales ),
@@ -371,7 +371,7 @@ async def score(
371371 InvalidRequestError, HTTPError, MinFraudError,
372372 """
373373 return cast (
374- Score ,
374+ " Score" ,
375375 await self ._response_for (
376376 self ._score_uri ,
377377 Score ,
@@ -551,7 +551,7 @@ def factors(
551551 InvalidRequestError, HTTPError, MinFraudError,
552552 """
553553 return cast (
554- Factors ,
554+ " Factors" ,
555555 self ._response_for (
556556 self ._factors_uri ,
557557 partial (Factors , self ._locales ),
@@ -590,7 +590,7 @@ def insights(
590590 InvalidRequestError, HTTPError, MinFraudError,
591591 """
592592 return cast (
593- Insights ,
593+ " Insights" ,
594594 self ._response_for (
595595 self ._insights_uri ,
596596 partial (Insights , self ._locales ),
@@ -629,7 +629,7 @@ def score(
629629 InvalidRequestError, HTTPError, MinFraudError,
630630 """
631631 return cast (
632- Score ,
632+ " Score" ,
633633 self ._response_for (
634634 self ._score_uri ,
635635 Score ,
0 commit comments