Browse Source

Revert "HOT-FIX: substituir 0 e 1 por False e True"

This reverts commit 4294c9fc07.
pull/1642/head
Edward Ribeiro 7 years ago
parent
commit
f18f9537c0
  1. 4
      sapl/materia/forms.py

4
sapl/materia/forms.py

@ -54,8 +54,8 @@ def ANO_CHOICES():
def em_tramitacao():
return [('', 'Tanto Faz'),
(True, 'Sim'),
(False, 'Não')]
(1, 'Sim'),
(0, 'Não')]
class AdicionarVariasAutoriasFilterSet(django_filters.FilterSet):

Loading…
Cancel
Save