[Answered ]-Getting Error with Django Phone Number Form Field

2πŸ‘

βœ…

I just discovered the error. It’s in this line:

error_messages = {'required', 'Phone number required'},

I needed to replace the β€œ,” with a β€œ:”:

error_messages = {'required': 'Phone number required'},
πŸ‘€Jim

Leave a comment