Skip to content

Commit

Permalink
Fixing error message for issue 2116 (#2192)
Browse files Browse the repository at this point in the history
  • Loading branch information
amontanez24 committed Aug 22, 2024
1 parent c64d87c commit 74cc2b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sdv/single_table/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down

0 comments on commit 74cc2b1

Please sign in to comment.