Skip to content

Commit

Permalink
Remove django admin
Browse files Browse the repository at this point in the history
  • Loading branch information
Eriko Morais committed Oct 15, 2020
1 parent 4a374b1 commit 8dc4340
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 133 deletions.
12 changes: 6 additions & 6 deletions pyboleto/bank/sicredi.py
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
# -*- coding: utf-8 -*-
from pyboleto.data import BoletoData, custom_property
from pyboleto.data import BoletoData, CustomProperty


class BoletoSicredi(BoletoData):
'''
Gera Dados necessários para criação de boleto para o Banco Sicredi
'''
agencia_cedente = custom_property('agencia_cedente', 4)
conta_cedente = custom_property('conta_cedente', 8)
posto = custom_property('posto', 2)
convenio = custom_property('convenio', 4)
agencia_cedente = CustomProperty('agencia_cedente', 4)
conta_cedente = CustomProperty('conta_cedente', 8)
posto = CustomProperty('posto', 2)
convenio = CustomProperty('convenio', 4)
# Nosso numero (sem dv) com 8 digitos
nosso_numero = custom_property('nosso_numero', 8)
nosso_numero = CustomProperty('nosso_numero', 8)

def __init__(self):
'''
Expand Down
Empty file removed pyboleto/django/__init__.py
Empty file.
49 changes: 0 additions & 49 deletions pyboleto/django/admin.py

This file was deleted.

77 changes: 0 additions & 77 deletions pyboleto/django/models.py

This file was deleted.

1 change: 0 additions & 1 deletion pyboleto/django/views.py

This file was deleted.

0 comments on commit 8dc4340

Please sign in to comment.