Skip to content
Snippets Groups Projects
Commit 579bbcb4 authored by Yuya Nishihara's avatar Yuya Nishihara
Browse files

templatekw: eliminate unnecessary temporary variable 'names' from _showlist()

Replace 'names' with the optional argument 'plural'.
parent 0e9fece1
No related branches found
No related tags found
No related merge requests found
......@@ -106,7 +106,6 @@
expand 'end_foos'.
'''
templ = args['templ']
if plural:
names = plural
else: names = name + 's'
if not plural:
plural = name + 's'
if not values:
......@@ -112,5 +111,5 @@
if not values:
noname = 'no_' + names
noname = 'no_' + plural
if noname in templ:
yield templ(noname, **args)
return
......@@ -121,7 +120,7 @@
for v in values:
yield dict(v, **args)
return
startname = 'start_' + names
startname = 'start_' + plural
if startname in templ:
yield templ(startname, **args)
vargs = args.copy()
......@@ -144,7 +143,7 @@
yield one(v)
if last is not None:
yield one(last, tag=lastname)
endname = 'end_' + names
endname = 'end_' + plural
if endname in templ:
yield templ(endname, **args)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment