We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9a67dd5 commit 7be5f69Copy full SHA for 7be5f69
README.md
@@ -33,7 +33,7 @@ pytest
33
```python
34
from datetime import date
35
from cep import Transferencia
36
-from cep.exc import NotFoundError
+from cep.exc import TransferNotFoundError
37
38
try:
39
tr = Transferencia.validar(
@@ -47,7 +47,7 @@ try:
47
pdf = tr.descargar()
48
with open('CUENCA1555093850.pdf', 'wb') as f:
49
f.write(pdf)
50
-except NotFoundError as e:
+except TransferNotFoundError as e:
51
print('No se encontro la transferencia')
52
```
53
0 commit comments