Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit df27a3b

Browse files
update changelog (#141)
* update changelog * .
1 parent 819a69b commit df27a3b

2 files changed

Lines changed: 8 additions & 1 deletion

File tree

README.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,11 @@ call ``resolver.get_fully_qualified_name('collections.Set')`` to retrieve the
102102
Changelog
103103
---------
104104

105+
Version 2.10.0 (April 17, 2026)
106+
107+
- Update bundled typeshed
108+
- Make tests pass with the typeshed in the PyPI tarball
109+
105110
Version 2.9.0 (March 1, 2026)
106111

107112
- Update bundled typeshed

typeshed_client/finder.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -381,7 +381,9 @@ def _find_file_in_dir(
381381

382382

383383
def find_typeshed() -> Path:
384-
return importlib_resources.files("typeshed_client") / "typeshed"
384+
path = importlib_resources.files("typeshed_client") / "typeshed"
385+
assert isinstance(path, Path), repr(path)
386+
return path
385387

386388

387389
def parse_stub_file(path: Path) -> ast.Module:

0 commit comments

Comments
 (0)