Skip to content

Commit ba62e49

Browse files
Update python/hsfs/core/schema_validation.py
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
1 parent c078bcc commit ba62e49

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/hsfs/core/schema_validation.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ def _validate_df_specifics(self, feature_group, df):
217217

218218
if col_max_len is not None and currentmax > col_max_len:
219219
errors[col] = (
220-
f"String length exceeded. Column {col} has string values longer than maximum colum limit of {col_max_len} characters."
220+
f"String length exceeded. Column {col} has string values longer than maximum column limit of {col_max_len} characters."
221221
)
222222
column_lengths[col] = currentmax
223223
is_string_length_exceeded = True

0 commit comments

Comments
 (0)