feat: increase dataset description length to 400 (#283)

This commit is contained in:
John Wang 2023-06-02 14:03:18 +08:00 committed by GitHub
parent 59e59c19b2
commit 2478c88e07
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -50,8 +50,8 @@ def _validate_name(name):
def _validate_description_length(description):
if len(description) > 200:
raise ValueError('Description cannot exceed 200 characters.')
if len(description) > 400:
raise ValueError('Description cannot exceed 400 characters.')
return description