Skip to content

Commit

Permalink
PEP8
Browse files Browse the repository at this point in the history
  • Loading branch information
cuducos committed Aug 8, 2018
1 parent e8af033 commit 9932c0b
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion perfil/election/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,11 @@ class Donation(models.Model):
donator = models.CharField(max_length=250)
donator_id = models.CharField(max_length=14, default='', blank=True)
original_donator = models.CharField(max_length=250, default='', blank=True)
original_donator_id = models.CharField(max_length=14, default='', blank=True)
original_donator_id = models.CharField(
max_length=14,
default='',
blank=True
)
date = models.DateField(null=True)
value = models.DecimalField(max_digits=15, decimal_places=2, null=True)
description = models.CharField(max_length=250, null=True)
Expand Down

0 comments on commit 9932c0b

Please sign in to comment.