File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -671,7 +671,6 @@ def create(self):
671
671
metadata_file = self .args .metadata_file
672
672
with open (metadata_file , 'r' ) as f :
673
673
org_metadata = OrganizationMetadata .from_json (json .load (f ))
674
- org_metadata .check_remove_groups ()
675
674
676
675
org_id = self .args .org_id
677
676
@@ -723,7 +722,6 @@ def update_metadata(self):
723
722
metadata_file = self .args .metadata_file
724
723
with open (metadata_file , 'r' ) as f :
725
724
org_metadata = OrganizationMetadata .from_json (json .load (f ))
726
- org_metadata .check_remove_groups ()
727
725
728
726
org_id = self .args .org_id
729
727
existing_registry_org_metadata = self ._get_organization_metadata_from_registry (org_id )
Original file line number Diff line number Diff line change 31
31
"short_description" : {
32
32
"description" : " Organization short description" ,
33
33
"type" : " string" ,
34
- "minLength" : 1
34
+ "minLength" : 1 ,
35
+ "maxLength" : 160
35
36
},
36
37
"url" : {
37
38
"description" : " Organization url" ,
You can’t perform that action at this time.
0 commit comments