Mike Brennan

- Total activity 6
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 1
- Subscriptions 1
-
-
-
Mike Brennan commented, -
Mike Brennan created a post, AnsweredPyCharm Type Hints: No warning using typing.NewType
Hi, Why doesn't this result in a warning? from typing import NewType Foo = NewType('Foo', str)Bar = NewType('Bar', str) def f(): # type: () -> Foo return Bar() I'm using PyCharm Community Edi...