Skip to content

Commit

Permalink
fix: get_deep_link_resources type hint
Browse files Browse the repository at this point in the history
  • Loading branch information
kuipumu committed May 21, 2024
1 parent eb3964d commit 95ee206
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion openedx_lti_tool_plugin/deep_linking/forms.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ def get_content_items_choice(self, course, request: HttpRequest) -> Tuple[str, s
course.learning_context.title,
)

def get_deep_link_resources(self) -> Optional[Set[DeepLinkResource]]:
def get_deep_link_resources(self) -> Set[Optional[DeepLinkResource]]:
"""Get set of `DeepLinkResource` from cleaned `content_items` field.
Returns:
Expand Down

0 comments on commit 95ee206

Please sign in to comment.