Unverified Commit 2478c88e authored by John Wang's avatar John Wang Committed by GitHub

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

parent 59e59c19
...@@ -50,8 +50,8 @@ def _validate_name(name): ...@@ -50,8 +50,8 @@ def _validate_name(name):
def _validate_description_length(description): def _validate_description_length(description):
if len(description) > 200: if len(description) > 400:
raise ValueError('Description cannot exceed 200 characters.') raise ValueError('Description cannot exceed 400 characters.')
return description return description
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment