Skip to content

Commit

Permalink
missing optional for manual_curp
Browse files Browse the repository at this point in the history
  • Loading branch information
agarrido19 committed Jun 16, 2022
1 parent 844c99a commit 8d31794
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions cuenca/resources/curp_validations.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,12 +77,12 @@ class Config:
@classmethod
def create(
cls,
names: str,
first_surname: str,
date_of_birth: dt.date,
country_of_birth: str,
state_of_birth: State,
gender: Gender,
names: Optional[str],
first_surname: Optional[str],
date_of_birth: Optional[dt.date],
country_of_birth: Optional[str],
state_of_birth: Optional[State],
gender: Optional[Gender],
second_surname: Optional[str] = None,
manual_curp: Optional[CurpField] = None,
*,
Expand Down
2 changes: 1 addition & 1 deletion cuenca/version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
__version__ = '0.12.1.dev0'
__version__ = '0.12.1.dev1'
CLIENT_VERSION = __version__
API_VERSION = '2020-03-19'

0 comments on commit 8d31794

Please sign in to comment.