We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
We want to easily maintenance to the source. I think mypy type check is a very good feature and approach.
mypy
The text was updated successfully, but these errors were encountered:
You want to run this on CI/Travis?
Sorry, something went wrong.
@blueyed Ah, just only for easily maintenance for developers. Not for testing. I mean, introduction of a pseudo type checking.
So you mean to use function annotations in the source code?
@blueyed Yes, like
x = 1 # type: int x = 1.0 # type: float x = True # type: bool x = "test" # type: str x = [1] # type: List[int] x = set([6, 7]) # type: Set[int]
I don't know Python community; Use mypy is a bad idea?
mypy is currently getting more and more attention by the community, so it is a good to have support for that.
No branches or pull requests
We want to easily maintenance to the source.
I think
mypy
type check is a very good feature and approach.The text was updated successfully, but these errors were encountered: