I have a working block of code in a Django form class as shown below. The data set from which I\'m building the form field list can include an initial val
Make initial= "" in the field definition will solve your problem. Both proposed methods are correct you need just to define initial= "" in the field definitoion and the problem is solved