Skip to content

Commit 8a8b056

Browse files
karpetrosyanstainless-app[bot]
authored andcommitted
chore(internal): fix mypy (#1575)
1 parent 76cbe0d commit 8a8b056

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

src/lithic/resources/account_holders.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -348,7 +348,9 @@ def create(
348348
*,
349349
beneficial_owner_individuals: Iterable[account_holder_create_params.KYBBeneficialOwnerIndividual]
350350
| NotGiven = NOT_GIVEN,
351-
business_entity: account_holder_create_params.KYBBusinessEntity | NotGiven = NOT_GIVEN,
351+
business_entity: account_holder_create_params.KYBBusinessEntity
352+
| account_holder_create_params.KYBDelegatedBusinessEntity
353+
| NotGiven = NOT_GIVEN,
352354
control_person: account_holder_create_params.KYBControlPerson | NotGiven = NOT_GIVEN,
353355
nature_of_business: str | NotGiven = NOT_GIVEN,
354356
tos_timestamp: str | NotGiven = NOT_GIVEN,
@@ -1415,7 +1417,9 @@ async def create(
14151417
*,
14161418
beneficial_owner_individuals: Iterable[account_holder_create_params.KYBBeneficialOwnerIndividual]
14171419
| NotGiven = NOT_GIVEN,
1418-
business_entity: account_holder_create_params.KYBBusinessEntity | NotGiven = NOT_GIVEN,
1420+
business_entity: account_holder_create_params.KYBBusinessEntity
1421+
| account_holder_create_params.KYBDelegatedBusinessEntity
1422+
| NotGiven = NOT_GIVEN,
14191423
control_person: account_holder_create_params.KYBControlPerson | NotGiven = NOT_GIVEN,
14201424
nature_of_business: str | NotGiven = NOT_GIVEN,
14211425
tos_timestamp: str | NotGiven = NOT_GIVEN,

0 commit comments

Comments
 (0)