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
Make tpv lint surround each expression with a fake, type annotated function, and perform type checking on that generated function using mypy.
@mvdbeek
say you’re doing x = job.History somewhere in an expression. Write that expression out during the lint stage as def expression(job: galaxy.model.Job): x = job.History run mypy on that and you know this will tell you what went wrong
say you’re doing x = job.History somewhere in an expression. Write that expression out during the lint stage as
x = job.History
def expression(job: galaxy.model.Job): x = job.History
run mypy on that and you know this will tell you what went wrong
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Make tpv lint surround each expression with a fake, type annotated function, and perform type checking on that generated function using mypy.
@mvdbeek
The text was updated successfully, but these errors were encountered: