Skip to content

Commit

Permalink
change plz from int to str
Browse files Browse the repository at this point in the history
  • Loading branch information
eumel8 committed Dec 17, 2023
1 parent 381659b commit 9776782
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion user/user.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ class ValidateInputSchemaUser(Schema):
strasse1 = fields.Str(required=True, validate=Length(max=128))
strasse2 = fields.Str(required=False, validate=Length(max=128))
land = fields.Str(required=True, validate=Length(max=2))
plz = fields.Int(required=True)
plz = fields.Str(required=True)
ort = fields.Str(required=False, validate=Length(max=128))
telefon = fields.Str(required=False, validate=Length(max=64))
telefax = fields.Str(required=False, validate=Length(max=64))
Expand Down

0 comments on commit 9776782

Please sign in to comment.