Skip to content

Commit 8dc4340

Browse files
author
Eriko Morais
committed
Remove django admin
1 parent 4a374b1 commit 8dc4340

File tree

5 files changed

+6
-133
lines changed

5 files changed

+6
-133
lines changed

pyboleto/bank/sicredi.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
# -*- coding: utf-8 -*-
2-
from pyboleto.data import BoletoData, custom_property
2+
from pyboleto.data import BoletoData, CustomProperty
33

44

55
class BoletoSicredi(BoletoData):
66
'''
77
Gera Dados necessários para criação de boleto para o Banco Sicredi
88
'''
9-
agencia_cedente = custom_property('agencia_cedente', 4)
10-
conta_cedente = custom_property('conta_cedente', 8)
11-
posto = custom_property('posto', 2)
12-
convenio = custom_property('convenio', 4)
9+
agencia_cedente = CustomProperty('agencia_cedente', 4)
10+
conta_cedente = CustomProperty('conta_cedente', 8)
11+
posto = CustomProperty('posto', 2)
12+
convenio = CustomProperty('convenio', 4)
1313
# Nosso numero (sem dv) com 8 digitos
14-
nosso_numero = custom_property('nosso_numero', 8)
14+
nosso_numero = CustomProperty('nosso_numero', 8)
1515

1616
def __init__(self):
1717
'''

pyboleto/django/__init__.py

Whitespace-only changes.

pyboleto/django/admin.py

Lines changed: 0 additions & 49 deletions
This file was deleted.

pyboleto/django/models.py

Lines changed: 0 additions & 77 deletions
This file was deleted.

pyboleto/django/views.py

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)