You can also do the same things as Gezim suggested in form definition:
class SomeForm(forms.ModelForm):
# other stuff here
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
self.label_suffix = ""
A related SO post is here: Django form. How hide colon from initial_text?