Skip to content

Commit 4add50a

Browse files
committed
Remove unneeded type annotation
1 parent 9d8ef83 commit 4add50a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sphinx/ext/intersphinx.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -718,7 +718,7 @@ class MockApp:
718718

719719
try:
720720
filename = argv[0]
721-
inv_data: Inventory = fetch_inventory(MockApp(), '', filename) # type: ignore[arg-type]
721+
inv_data = fetch_inventory(MockApp(), '', filename) # type: ignore[arg-type]
722722
for key in sorted(inv_data or {}):
723723
print(key)
724724
inv_entries = sorted(inv_data[key].items())

0 commit comments

Comments
 (0)