Skip to content

Commit 8d31794

Browse files
committed
missing optional for manual_curp
1 parent 844c99a commit 8d31794

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

cuenca/resources/curp_validations.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -77,12 +77,12 @@ class Config:
7777
@classmethod
7878
def create(
7979
cls,
80-
names: str,
81-
first_surname: str,
82-
date_of_birth: dt.date,
83-
country_of_birth: str,
84-
state_of_birth: State,
85-
gender: Gender,
80+
names: Optional[str],
81+
first_surname: Optional[str],
82+
date_of_birth: Optional[dt.date],
83+
country_of_birth: Optional[str],
84+
state_of_birth: Optional[State],
85+
gender: Optional[Gender],
8686
second_surname: Optional[str] = None,
8787
manual_curp: Optional[CurpField] = None,
8888
*,

cuenca/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
__version__ = '0.12.1.dev0'
1+
__version__ = '0.12.1.dev1'
22
CLIENT_VERSION = __version__
33
API_VERSION = '2020-03-19'

0 commit comments

Comments
 (0)