diff --git a/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/conf.py b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/conf.py index 819bff31aa..961ce6aa8e 100644 --- a/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/conf.py +++ b/common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/conf.py @@ -176,8 +176,13 @@ htmlhelp_basename = 'MathJaxdoc' # Grouping the document tree into LaTeX files. List of tuples # (source start file, target name, title, author, documentclass [howto/manual]). latex_documents = [ - ('index', 'MathJax.tex', u'MathJax Documentation', - u'Davide Cervone, Casey Stark, Robert Miner, Paul Topping', 'manual'), + ( + 'index', + 'MathJax.tex', + u'MathJax Documentation', + u'Davide Cervone, Casey Stark, Robert Miner, Paul Topping', + 'manual', + ), ] # The name of an image file (relative to this directory) to place at the top of diff --git a/common/test/acceptance/tests/studio/test_studio_with_ora_component.py b/common/test/acceptance/tests/studio/test_studio_with_ora_component.py index 6d0a6f7ac6..18f3e81cfa 100644 --- a/common/test/acceptance/tests/studio/test_studio_with_ora_component.py +++ b/common/test/acceptance/tests/studio/test_studio_with_ora_component.py @@ -33,8 +33,14 @@ class ORAComponentTest(StudioCourseTest): XBlockFixtureDesc('chapter', 'Test Section').add_children( XBlockFixtureDesc('sequential', 'Test Subsection').add_children( XBlockFixtureDesc('vertical', 'Test Unit').add_children( - XBlockFixtureDesc('combinedopenended', "Peer Problem", - data=load_data_str('ora_peer_problem.xml'), metadata={'graded': True}), + XBlockFixtureDesc( + 'combinedopenended', + "Peer Problem", + data=load_data_str('ora_peer_problem.xml'), + metadata={ + 'graded': True, + }, + ), XBlockFixtureDesc('peergrading', 'Peer Module'), ) ) diff --git a/docs/shared/conf.py b/docs/shared/conf.py index f020c247cd..cb1e5f6c45 100644 --- a/docs/shared/conf.py +++ b/docs/shared/conf.py @@ -209,8 +209,13 @@ latex_elements = { # Grouping the document tree into LaTeX files. List of tuples # (source start file, target name, title, author, documentclass [howto/manual]). latex_documents = [ - ('index', 'getting_started.tex', u'edX Studio Documentation', - u'EdX Doc Team', 'manual'), + ( + 'index', + 'getting_started.tex', + u'edX Studio Documentation', + u'EdX Doc Team', + 'manual', + ), ] # The name of an image file (relative to this directory) to place at the top of @@ -253,9 +258,15 @@ man_pages = [ # (source start file, target name, title, author, # dir menu entry, description, category) texinfo_documents = [ - ('index', 'getting_started', u'getting_started Documentation', - u'EdX Doc Team', 'getting_started', 'One line description of project.', - 'Miscellaneous'), + ( + 'index', + 'getting_started', + u'getting_started Documentation', + u'EdX Doc Team', + 'getting_started', + 'One line description of project.', + 'Miscellaneous', + ), ] # Documents to append as an appendix to all manuals. diff --git a/lms/djangoapps/courseware/views.py b/lms/djangoapps/courseware/views.py index 54936d972b..d5b6c4c737 100644 --- a/lms/djangoapps/courseware/views.py +++ b/lms/djangoapps/courseware/views.py @@ -773,8 +773,8 @@ def course_about(request, course_id): 'invitation_only': invitation_only, 'active_reg_button': active_reg_button, 'is_shib_course': is_shib_course, - # We do not want to display the internal courseware header, which is used when the course is found in the - # context. This value is therefor explicitly set to render the appropriate header. + # We do not want to display the internal courseware header, which is used when the course is found in the + # context. This value is therefor explicitly set to render the appropriate header. 'disable_courseware_header': True, 'is_shopping_cart_enabled': _is_shopping_cart_enabled, 'cart_link': reverse('shoppingcart.views.show_cart'),