1
0
mirror of https://github.com/django/django.git synced 2025-01-24 00:59:20 +00:00

Fixed flake8 warnings.

This commit is contained in:
Tim Graham 2014-09-30 13:24:20 -04:00
parent f5cfd09c25
commit c7b5883c78

View File

@ -1,6 +1,7 @@
from django.db import models
from django.utils.encoding import python_2_unicode_compatible
@python_2_unicode_compatible
class Car(models.Model):
name = models.CharField(max_length=100)
@ -8,6 +9,7 @@ class Car(models.Model):
def __str__(self):
return self.name
@python_2_unicode_compatible
class Person(models.Model):
name = models.CharField(max_length=100)
@ -16,6 +18,7 @@ class Person(models.Model):
def __str__(self):
return self.name
@python_2_unicode_compatible
class PossessedCar(models.Model):
car = models.ForeignKey(Car)