Skip to content

Commit

Permalink
chore: add disable=no-member in filter exception
Browse files Browse the repository at this point in the history
  • Loading branch information
BryanttV committed Apr 17, 2024
1 parent d38045b commit 7cdfbdb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion openassessment/xblock/ui_mixins/legacy/views/submission.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ def render_submission(config, submission_info):
# .. filter_type: org.openedx.learning.ora.submission_view.render.started.v1
context, path = ORASubmissionViewRenderStarted.run_filter(context, path)
except ORASubmissionViewRenderStarted.RenderInvalidTemplate as exc:
context, path = exc.context, exc.template_name
context, path = exc.context, exc.template_name # pylint: disable=no-member

return config.render_assessment(path, context_dict=context)

Expand Down

0 comments on commit 7cdfbdb

Please sign in to comment.