Skip to content

Commit c0267e7

Browse files
committed
chore: fix typo
1 parent c9d2adc commit c0267e7

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

lti_consumer/plugin/views.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ def public_keyset_endpoint(
138138
lti_passport = Lti1p3Passport.objects.get(passport_id=passport_id)
139139
public_jwk = lti_passport.lti_1p3_public_jwk
140140
# TODO: move version inside passport from config
141-
# We just need any any lti_config that is using this passport to check version
141+
# We just need any lti_config that is using this passport to check version
142142
lti_config = LtiConfiguration.objects.filter(lti_1p3_passport=lti_passport).first()
143143
version = lti_config.version
144144
elif external_app and external_slug:
@@ -457,7 +457,7 @@ def access_token_endpoint(
457457
elif passport_id:
458458
lti_passport = Lti1p3Passport.objects.get(passport_id=passport_id)
459459
# TODO: move version inside passport from config
460-
# We just need any any lti_config that is using this passport to check version
460+
# We just need any lti_config that is using this passport to check version
461461
lti_config = LtiConfiguration.objects.filter(lti_1p3_passport=lti_passport).first()
462462
version = lti_config.version
463463
lti_consumer = LtiConsumer1p3(

0 commit comments

Comments
 (0)