diff --git a/src/vonage/number_insight_v2.py b/src/vonage/number_insight_v2.py index e6b6437b..8909dc97 100644 --- a/src/vonage/number_insight_v2.py +++ b/src/vonage/number_insight_v2.py @@ -37,5 +37,5 @@ def fraud_check(self, number: str, insights: Union[str, list]): def _validate_insight(self, insight: str): if insight not in ('fraud_score', 'sim_swap'): raise NumberInsightV2Error( - f'The only insights that can be requested are "fraud_score" and "sim_swap. You requested: "{insight}".' + f'The only insights that can be requested are "fraud_score" and "sim_swap". You requested: "{insight}".' )