Create your own GitHub profile
Sign up for your own profile on GitHub, the best place to host code, manage projects, and build software alongside 50 million developers.
Sign up
Popular repositories
545 contributions in the last year
Contribution activity
June 2020
Created an issue in python/mypy that received 1 comment
reveal_type in else clause swallowed
$ mypy --version
mypy 0.780
$ cat example.py
def main(): # type: () -> None if any: pass else: reveal_type(42)
main()
$ mypy example.py
Success: no…
1
comment