We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 20b539c commit c6a66e8Copy full SHA for c6a66e8
cuenca/resources/kyc_validations.py
@@ -30,6 +30,10 @@ class Config:
30
}
31
32
@classmethod
33
- def create(cls, user_id: str, session: Session = global_session) -> 'KYCValidation':
+ def create(
34
+ cls, user_id: str, session: Session = global_session
35
+ ) -> 'KYCValidation':
36
req = KYCValidationRequest(user_id=user_id)
- return cast('KYCValidation', cls._create(**req.dict(), session=session))
37
+ return cast(
38
+ 'KYCValidation', cls._create(**req.dict(), session=session)
39
+ )
0 commit comments