Skip to content

Commit

Permalink
Minor fix for beneficiaries (#269)
Browse files Browse the repository at this point in the history
* return dict

* version & rebase
  • Loading branch information
agarrido19 authored Jul 7, 2022
1 parent 0a743ba commit c27350e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion cuenca_validations/validators.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,10 @@
from .errors import NotDigitError


def sanitize_dict(d: dict):
def sanitize_dict(d: dict) -> dict:
for k, v in d.items():
d[k] = sanitize_item(v)
return d


def sanitize_item(item: Any, default: Callable = None) -> Any:
Expand Down
2 changes: 1 addition & 1 deletion cuenca_validations/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '0.10.22'
__version__ = '0.10.23'

0 comments on commit c27350e

Please sign in to comment.