diff options
author | Daniel Eades <danieleades@hotmail.com> | 2022-01-10 09:21:53 +0000 |
---|---|---|
committer | Daniel Eades <danieleades@hotmail.com> | 2022-01-12 20:19:18 +0000 |
commit | 6697ed62ed38287b72dd6ff213ba41d9d8f86466 (patch) | |
tree | ea61d054d85df6215dd3a8e42294e2c3ead60269 /doc/development/tutorials/examples/recipe.py | |
parent | 49196d44746f7dd84dcc3a1837bd5c8d68a9848e (diff) | |
download | sphinx-git-6697ed62ed38287b72dd6ff213ba41d9d8f86466.tar.gz |
address some unused loop control variables (B007)
Diffstat (limited to 'doc/development/tutorials/examples/recipe.py')
-rw-r--r-- | doc/development/tutorials/examples/recipe.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/development/tutorials/examples/recipe.py b/doc/development/tutorials/examples/recipe.py index fbcfea362..62c320d37 100644 --- a/doc/development/tutorials/examples/recipe.py +++ b/doc/development/tutorials/examples/recipe.py @@ -87,7 +87,7 @@ class RecipeIndex(Index): # first letter of the recipe as a key to group thing # # name, subtype, docname, anchor, extra, qualifier, description - for name, dispname, typ, docname, anchor, _ in recipes: + for _name, dispname, typ, docname, anchor, _ in recipes: content[dispname[0].lower()].append( (dispname, 0, docname, anchor, docname, '', typ)) |