Fix PEP8: E121 continuation line indentation
is not a multiple of four
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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'),
|
||||
)
|
||||
)
|
||||
|
||||
@@ -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.
|
||||
|
||||
@@ -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'),
|
||||
|
||||
Reference in New Issue
Block a user