Kaydet (Commit) c7b5883c authored tarafından Tim Graham's avatar Tim Graham

Fixed flake8 warnings.

üst f5cfd09c
from django.db import models from django.db import models
from django.utils.encoding import python_2_unicode_compatible from django.utils.encoding import python_2_unicode_compatible
@python_2_unicode_compatible @python_2_unicode_compatible
class Car(models.Model): class Car(models.Model):
name = models.CharField(max_length=100) name = models.CharField(max_length=100)
...@@ -8,6 +9,7 @@ class Car(models.Model): ...@@ -8,6 +9,7 @@ class Car(models.Model):
def __str__(self): def __str__(self):
return self.name return self.name
@python_2_unicode_compatible @python_2_unicode_compatible
class Person(models.Model): class Person(models.Model):
name = models.CharField(max_length=100) name = models.CharField(max_length=100)
...@@ -16,6 +18,7 @@ class Person(models.Model): ...@@ -16,6 +18,7 @@ class Person(models.Model):
def __str__(self): def __str__(self):
return self.name return self.name
@python_2_unicode_compatible @python_2_unicode_compatible
class PossessedCar(models.Model): class PossessedCar(models.Model):
car = models.ForeignKey(Car) car = models.ForeignKey(Car)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment