Skip to content

Commit

Permalink
Fix lint for real
Browse files Browse the repository at this point in the history
  • Loading branch information
awush-stripe authored and ccen-stripe committed Mar 30, 2022
1 parent 701167b commit d297277
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
Expand Up @@ -123,11 +123,12 @@ class CardImageVerificationSheet private constructor(
from.registerForActivityResult(
activityResultContract,
registry,
cardImageVerificationResultCallback::onCardImageVerificationSheetResult)
cardImageVerificationResultCallback::onCardImageVerificationSheetResult,
)
} else {
from.registerForActivityResult(
activityResultContract,
cardImageVerificationResultCallback::onCardImageVerificationSheetResult
cardImageVerificationResultCallback::onCardImageVerificationSheetResult,
)
}
}
Expand Down
Expand Up @@ -95,12 +95,12 @@ class CardScanSheet private constructor(private val stripePublishableKey: String
from.registerForActivityResult(
activityResultContract,
registry,
cardScanSheetResultCallback::onCardScanSheetResult
cardScanSheetResultCallback::onCardScanSheetResult,
)
} else {
from.registerForActivityResult(
activityResultContract,
cardScanSheetResultCallback::onCardScanSheetResult
cardScanSheetResultCallback::onCardScanSheetResult,
)
}
}
Expand Down

0 comments on commit d297277

Please sign in to comment.