From 6fc1bbd9fca3abcf4c85ad0911372afd7888a7eb Mon Sep 17 00:00:00 2001 From: Jinyang Wang Date: Wed, 14 Jan 2026 19:57:43 +0400 Subject: [PATCH 1/2] add ty --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 6668aa6c6..0680911b9 100644 --- a/README.md +++ b/README.md @@ -246,6 +246,7 @@ _Tools of static analysis, linters and code quality checkers. Also see [awesome- - [yapf](https://github.com/google/yapf) - Yet another Python code formatter from Google. - Static Type Checkers, also see [awesome-python-typing](https://github.com/typeddjango/awesome-python-typing) - [mypy](https://github.com/python/mypy) - Check variable types during compile time. + - [ty](https://github.com/astral-sh/ty) - An extremely fast Python type checker and language server. - [pyre-check](https://github.com/facebook/pyre-check) - Performant type checking. - [typeshed](https://github.com/python/typeshed) - Collection of library stubs for Python, with static types. - Static Type Annotations Generators From 3f674ba2811734c406b6d0113883cde598fd9a83 Mon Sep 17 00:00:00 2001 From: Jinyang Wang Date: Wed, 14 Jan 2026 20:03:32 +0400 Subject: [PATCH 2/2] fix entry location --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0680911b9..0f85526eb 100644 --- a/README.md +++ b/README.md @@ -246,8 +246,8 @@ _Tools of static analysis, linters and code quality checkers. Also see [awesome- - [yapf](https://github.com/google/yapf) - Yet another Python code formatter from Google. - Static Type Checkers, also see [awesome-python-typing](https://github.com/typeddjango/awesome-python-typing) - [mypy](https://github.com/python/mypy) - Check variable types during compile time. - - [ty](https://github.com/astral-sh/ty) - An extremely fast Python type checker and language server. - [pyre-check](https://github.com/facebook/pyre-check) - Performant type checking. + - [ty](https://github.com/astral-sh/ty) - An extremely fast Python type checker and language server. - [typeshed](https://github.com/python/typeshed) - Collection of library stubs for Python, with static types. - Static Type Annotations Generators - [monkeytype](https://github.com/Instagram/MonkeyType) - A system for Python that generates static type annotations by collecting runtime types.