Fix flake8 E122 errors

master
Wiktor Matuszewski 2018-10-06 15:10:26 +02:00
parent ec9f58bda3
commit c9f9992e69
2 changed files with 6 additions and 7 deletions

View File

@ -188,14 +188,14 @@ htmlhelp_basename = 'bepastydoc'
# -- Options for LaTeX output ---------------------------------------------
latex_elements = {
# The paper size ('letterpaper' or 'a4paper').
#'papersize': 'letterpaper',
# The paper size ('letterpaper' or 'a4paper').
# 'papersize': 'letterpaper',
# The font size ('10pt', '11pt' or '12pt').
#'pointsize': '10pt',
# The font size ('10pt', '11pt' or '12pt').
# 'pointsize': '10pt',
# Additional stuff for the LaTeX preamble.
#'preamble': '',
# Additional stuff for the LaTeX preamble.
# 'preamble': '',
}
# Grouping the document tree into LaTeX files. List of tuples

View File

@ -3,7 +3,6 @@ norecursedirs = .eggs .git .tox build
[flake8]
ignore =
E122, # continuation line missing indentation or outdented
E124, # closing bracket does not match visual indentation
E226, # missing whitespace around arithmetic operator
E265, # block comment should start with '# '