Skip to content

Commit 45f83c0

Browse files
committed
chore: fix typo
1 parent c9d2adc commit 45f83c0

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

CHANGELOG.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Please See the `releases tab <https://github.com/openedx/xblock-lti-consumer/rel
1616
Unreleased
1717
~~~~~~~~~~
1818

19-
11.0.1 - 2026-04-20
19+
11.0.0 - 2026-04-20
2020
--------------------
2121
* Split LTI 1.3 Configuration into Passport Model
2222
* Fix duplicate, copy-paste for LTI xblocks

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)