Skip to content

Commit

Permalink
Replaced just _ with an unused variable declaration.
Browse files Browse the repository at this point in the history
Co-authored-by: Louis Guitton <louisguitton@users.noreply.github.com>
  • Loading branch information
tomaarsen and louisguitton committed Jun 1, 2021
1 parent 317fbe5 commit d4abe91
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyfixdoc.py
Original file line number Diff line number Diff line change
Expand Up @@ -470,7 +470,7 @@ def format_class (
line_num, obj_md = self.document_method(path_list, member_name, member_obj, func_kind)
obj_md_pos[line_num] = obj_md

for _, obj_md in sorted(obj_md_pos.items()):
for _pos, obj_md in sorted(obj_md_pos.items()):
self.md.extend(obj_md)


Expand Down

0 comments on commit d4abe91

Please sign in to comment.