Skip to content

Commit c6a66e8

Browse files
committed
format
1 parent 20b539c commit c6a66e8

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

cuenca/resources/kyc_validations.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,10 @@ class Config:
3030
}
3131

3232
@classmethod
33-
def create(cls, user_id: str, session: Session = global_session) -> 'KYCValidation':
33+
def create(
34+
cls, user_id: str, session: Session = global_session
35+
) -> 'KYCValidation':
3436
req = KYCValidationRequest(user_id=user_id)
35-
return cast('KYCValidation', cls._create(**req.dict(), session=session))
37+
return cast(
38+
'KYCValidation', cls._create(**req.dict(), session=session)
39+
)

0 commit comments

Comments
 (0)