3030 None ,
3131 configspec = specpath ,
3232 stringify = False ,
33- list_values = False
33+ list_values = False ,
3434)
3535validator = validate .Validator ()
3636config .validate (validator )
@@ -52,7 +52,9 @@ def write_section(section, secname, key, comment, file_):
5252 fun_args = []
5353 if fun_name == 'integer' and len (fun_args ) == 2 :
5454 fun_name += ', allowed values are between {} and {}' .format (
55- fun_args [0 ], fun_args [1 ])
55+ fun_args [0 ],
56+ fun_args [1 ],
57+ )
5658 fun_args = []
5759 file_ .write ('\n ' )
5860 if fun_name in ['expand_db_path' , 'expand_path' ]:
@@ -89,8 +91,13 @@ def write_section(section, secname, key, comment, file_):
8991 file_ .write ('\n ' )
9092 comments = spec [secname ]['__many__' ].comments
9193 for key , comment in sorted (comments .items ()):
92- write_section (spec [secname ]['__many__' ][key ], secname ,
93- key , comment , file_ )
94+ write_section (
95+ spec [secname ]['__many__' ][key ],
96+ secname ,
97+ key ,
98+ comment ,
99+ file_ ,
100+ )
94101 else :
95102 write_section (spec [secname ][key ], secname , key , comment , file_ )
96103
@@ -181,7 +188,6 @@ def write_section(section, secname, key, comment, file_):
181188# If true, `todo` and `todoList` produce output, else they produce nothing.
182189todo_include_todos = True
183190
184-
185191# -- Options for HTML output ----------------------------------------------
186192
187193# The theme to use for HTML and HTML Help pages. See the documentation for
@@ -314,8 +320,13 @@ def write_section(section, secname, key, comment, file_):
314320# (source start file, target name, title,
315321# author, documentclass [howto, manual, or own class]).
316322latex_documents = [
317- (master_doc , 'Todoman.tex' , 'Todoman Documentation' ,
318- 'Hugo Osvaldo Barrera' , 'manual' ),
323+ (
324+ master_doc ,
325+ 'Todoman.tex' ,
326+ 'Todoman Documentation' ,
327+ 'Hugo Osvaldo Barrera' ,
328+ 'manual' ,
329+ ),
319330]
320331
321332# The name of an image file (relative to this directory) to place at the top of
@@ -338,29 +349,36 @@ def write_section(section, secname, key, comment, file_):
338349# If false, no module index is generated.
339350# latex_domain_indices = True
340351
341-
342352# -- Options for manual page output ---------------------------------------
343353
344354# One entry per manual page. List of tuples
345355# (source start file, name, description, authors, manual section).
346- man_pages = [
347- (master_doc , 'todoman' , 'Todoman Documentation' ,
348- [author ], 1 )
349- ]
356+ man_pages = [(
357+ master_doc ,
358+ 'todoman' ,
359+ 'Todoman Documentation' ,
360+ [author ],
361+ 1 ,
362+ )]
350363
351364# If true, show URL addresses after external links.
352365# man_show_urls = False
353366
354-
355367# -- Options for Texinfo output -------------------------------------------
356368
357369# Grouping the document tree into Texinfo files. List of tuples
358370# (source start file, target name, title, author,
359371# dir menu entry, description, category)
360372texinfo_documents = [
361- (master_doc , 'Todoman' , 'Todoman Documentation' ,
362- author , 'Todoman' , 'One line description of project.' ,
363- 'Miscellaneous' ),
373+ (
374+ master_doc ,
375+ 'Todoman' ,
376+ 'Todoman Documentation' ,
377+ author ,
378+ 'Todoman' ,
379+ 'One line description of project.' ,
380+ 'Miscellaneous' ,
381+ ),
364382]
365383
366384# Documents to append as an appendix to all manuals.
0 commit comments