typing_copilot icon indicating copy to clipboard operation
typing_copilot copied to clipboard

Helper for starting to type-hint large codebases with mypy.

Results 15 typing_copilot issues
Sort by recently updated
recently updated
newest added

Bumps [ipython](https://github.com/ipython/ipython) from 8.1.1 to 8.10.0. Commits 15ea1ed release 8.10.0 560ad10 DOC: Update what's new for 8.10 (#13939) 7557ade DOC: Update what's new for 8.10 385d693 Merge pull request from...

dependencies

I found that incorrect type arguments to numpy types produce mypy errors lines without line numbers, which in turn crash typing_copilot. Example of incorrect numpy type argument: ```python def f(z:...

Bumps [nbconvert](https://github.com/jupyter/nbconvert) from 6.4.2 to 6.5.1. Release notes Sourced from nbconvert's releases. Release 6.5.1 No release notes provided. 6.5.0 What's Changed Drop dependency on testpath. by @​anntzer in jupyter/nbconvert#1723 Adopt...

dependencies

Bumps [mistune](https://github.com/lepture/mistune) from 0.8.4 to 2.0.3. Release notes Sourced from mistune's releases. Version 2.0.2 Fix escape_url via lepture/mistune#295 Version 2.0.1 Fix XSS for image link syntax. Version 2.0.0 First release...

dependencies

Bumps [notebook](http://jupyter.org) from 6.4.8 to 6.4.12. [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=notebook&package-manager=pip&previous-version=6.4.8&new-version=6.4.12)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a...

dependencies

Encountered a `mypy` error that is unexpectedly not raised in the minimal `mypy` run, and is not found and suppressed by the config generated after the strictest `mypy` run. This...

bug

`typing_copilot` is already quite a complex tool, and is not trivial to test for correctness. To make it easier to test, split it into a "driver" which knows how to...

enhancement

``` Validation failed due to unexpected error(s): [MypyError(file_path='auto_to.py', line_number=1370, error_code='union-attr', message='error: Item "None" of "Optional[datetime]" has no attribute "astimezone"'), MypyError(file_path='auto_to.py', line_number=1453, error_code='union-attr', message='error: Item "None" of "Optional[datetime]" has no attribute...

bug

If a user releases their package, they may have `build/` and/or `dist/` directories left over in their project directory. The existence of the duplicate source code files will make `mypy`...

good first issue
better-error-ux

Per http://mypy-lang.blogspot.com/2021/01/mypy-0800-released.html mypy starting in version 0.800 is a lot more aggressive at finding Python code to type-check. This may sometimes cause issues, e.g. if it attempts to type-check the...