Skip to content

Commit

Permalink
Remove unneeded type annotation
Browse files Browse the repository at this point in the history
  • Loading branch information
AA-Turner committed Aug 16, 2023
1 parent 9d8ef83 commit 4add50a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sphinx/ext/intersphinx.py
Original file line number Diff line number Diff line change
Expand Up @@ -718,7 +718,7 @@ class MockApp:

try:
filename = argv[0]
inv_data: Inventory = fetch_inventory(MockApp(), '', filename) # type: ignore[arg-type]
inv_data = fetch_inventory(MockApp(), '', filename) # type: ignore[arg-type]
for key in sorted(inv_data or {}):
print(key)
inv_entries = sorted(inv_data[key].items())
Expand Down

0 comments on commit 4add50a

Please sign in to comment.