Override save method of model in Python Django
When overriding the .save() method in a model, I've seen
```
super(ModelName, self).save(*args, **kwargs)
```
and also
```
super().save(*args, **kwargs)
```
I see this as a subtlety, but: is there a difference? Can I use any of these options?