Skip to content

Commit

Permalink
Remove codeclimate issue
Browse files Browse the repository at this point in the history
  • Loading branch information
giovanisleite committed Oct 6, 2019
1 parent e664a76 commit 2c2619b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion jarbas/federal_senate/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,9 @@ class Reimbursement(models.Model):
supplier = models.CharField('Fornecedor', max_length=256)
cnpj_cpf = models.CharField('CNPJ ou CPF', max_length=14, db_index=True, blank=True, null=True)

reimbursement_value = models.DecimalField('Valor do Reembolso', max_digits=10, decimal_places=3, blank=True, null=True)
reimbursement_value = models.DecimalField(
'Valor do Reembolso', max_digits=10, decimal_places=3, blank=True, null=True
)

probability = models.DecimalField('Probabilidade', max_digits=6, decimal_places=5, blank=True, null=True)
suspicions = JSONField('Suspeitas', blank=True, null=True)
Expand Down

0 comments on commit 2c2619b

Please sign in to comment.