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
Describe the bug The compile decorator is not fully typed. Therefore mypy complains when using it
Expected behavior Mypy doesn't complain
To Reproduce Use compile as a decorator
Error
error: Untyped decorator makes function "foo" untyped [misc]
Versions.
I'm happy to give a PR a try
The text was updated successfully, but these errors were encountered:
Facing same issue
@compiles(Utcnow, 'postgresql') def pg_utcnow(element, compiler, **kw): return "TIMEZONE('utc', CURRENT_TIMESTAMP)" @compiles(Utcnow, 'mssql') def ms_utcnow(element, compiler, **kw): return 'GETUTCDATE()'
Sorry, something went wrong.
No branches or pull requests
Describe the bug
The compile decorator is not fully typed. Therefore mypy complains when using it
Expected behavior
Mypy doesn't complain
To Reproduce
Use compile as a decorator
Error
Versions.
I'm happy to give a PR a try
The text was updated successfully, but these errors were encountered: