Skip to content

Commit

Permalink
fix(narugo): fix the error in docs
Browse files Browse the repository at this point in the history
  • Loading branch information
narugo1992 committed Nov 27, 2024
1 parent 5a9703d commit e510450
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/source/api_doc/archive/supported_types.demo.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
if __name__ == '__main__':
columns = ['Format', 'Extension Name']
rows = []
for key, (exts, _, _) in sorted(_KNOWN_ARCHIVE_TYPES.items()):
for key, (exts, _, _, _) in sorted(_KNOWN_ARCHIVE_TYPES.items()):
rows.append((key, ', '.join(f'``{v}``' for v in exts)))

df = pd.DataFrame(columns=columns, data=rows)
Expand Down

0 comments on commit e510450

Please sign in to comment.