Skip to content

Commit

Permalink
Avoid 0 that is not None but False
Browse files Browse the repository at this point in the history
  • Loading branch information
felps-dev committed Mar 28, 2024
1 parent 1f3ce25 commit e2fba76
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pynfe/processamento/serializacao.py
Original file line number Diff line number Diff line change
Expand Up @@ -1778,7 +1778,7 @@ def _serializar_nota_fiscal(
""" Obrigatório o preenchimento do Grupo Informações de Pagamento para NF-e e NFC-e.
Para as notas com finalidade de Ajuste ou Devolução
o campo Forma de Pagamento deve ser preenchido com 90=Sem Pagamento. """
if (nota_fiscal.tipo_pagamento):
if (nota_fiscal.tipo_pagamento is not None):
warnings.warn(
"O campo 'tipo_pagamento' está obsoleto e será removido em versões futuras. "
"Utilize o campo 'pagamentos' em seu lugar.",
Expand Down

0 comments on commit e2fba76

Please sign in to comment.