Skip to content

Commit 599c47c

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

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
@@ -136,7 +136,7 @@ def _validate_df_specifics(self, feature_group, df):
136136

137137
if col_max_len is not None and currentmax > col_max_len:
138138
errors[col] = (
139-
f"String length exceeded. Column {col} has string values longer than maximum colum limit of {col_max_len} characters."
139+
f"String length exceeded. Column {col} has string values longer than maximum column limit of {col_max_len} characters."
140140
)
141141
column_lengths[col] = currentmax
142142
is_string_length_exceeded = True

0 commit comments

Comments
 (0)