I don't know if there is any difference between these two Meta declarations:
class Car(models.Model):
    #...
    class Meta(object):  # <------- (1)
       #...
    class Meta:          # <------- (2)
       #...
Which one is correct and preferred? Does it depend on the usage?
I use python 2 and 3, and Django 1.7+.
 
     
    