Indendation cleanup
[webcomics.git] / comicsporn / models.py
index 0cea8c997e0274ae2acb65162a5bf9aa898c7dde..e0ed5dbd84d7d7561a0ac35a2f9fac44d1f4e871 100644 (file)
@@ -35,12 +35,12 @@ class UserProfile(models.Model):
         The default behaviour of class inheritance is to create OnetoOne relationship between parent and child 
         TODO: Which fields are required to interact with the ads publisher ?
         """
-        ADS_PUBLISHER_CHOICES = (
-                ('AS', 'Advert Stream'),
-                ('TJ', 'Traffic Junky'),
-        )
-        ads_publisher = models.CharField(max_length=50, choices=ADS_PUBLISHER_CHOICES)
-        ads_publisher_login = models.CharField(max_length=50)
+       ADS_PUBLISHER_CHOICES = (
+               ('AS', 'Advert Stream'),
+            ('TJ', 'Traffic Junky'),
+    )
+       ads_publisher = models.CharField(max_length=50, choices=ADS_PUBLISHER_CHOICES)
+       ads_publisher_login = models.CharField(max_length=50)
 
        class Meta:
                verbose_name = _('User profile')