fix comment
Showing
1 changed file
with
1 additions
and
1 deletions
| ... | @@ -70,7 +70,7 @@ compare_content = { | ... | @@ -70,7 +70,7 @@ compare_content = { |
| 70 | "applicationVersion": fields.Int(required=True), | 70 | "applicationVersion": fields.Int(required=True), |
| 71 | 'vehicleStatus': fields.Str(required=True, validate=validate.OneOf(consts.VEHICLE_STATUS)), | 71 | 'vehicleStatus': fields.Str(required=True, validate=validate.OneOf(consts.VEHICLE_STATUS)), |
| 72 | 72 | ||
| 73 | 'comments': fields.List(comment_args, required=True), | 73 | 'comments': fields.List(fields.Nested(comment_args), required=True), |
| 74 | 74 | ||
| 75 | 'individualCusInfo': fields.List(fields.Nested(individual_args), | 75 | 'individualCusInfo': fields.List(fields.Nested(individual_args), |
| 76 | required=True, validate=validate.Length(min=1, max=4)), | 76 | required=True, validate=validate.Length(min=1, max=4)), | ... | ... |
-
Please register or sign in to post a comment