diff --git a/sdv/single_table/base.py b/sdv/single_table/base.py index e9ce2178f..7645c6986 100644 --- a/sdv/single_table/base.py +++ b/sdv/single_table/base.py @@ -176,7 +176,7 @@ def _validate_primary_key(self, data): possible_characters = get_possible_chars(regex, 1) if '0' in possible_characters: raise SynthesizerInputError( - f'Primary key "{primary_key}" {INT_REGEX_ZERO_ERROR_MESSAGE}.' + f'Primary key "{primary_key}" {INT_REGEX_ZERO_ERROR_MESSAGE}' ) def validate(self, data):