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
Hi! thanks for making the great database! I'm happily learning edgedb nowdays. 😆
can we have template for code generation?
below edgeql generates below python code
select 1;
# AUTOGENERATED FROM 'app/queries/test.edgeql' WITH: # $ edgedb-py from __future__ import annotations import edgedb async def test( executor: edgedb.AsyncIOExecutor, ) -> int: return await executor.query_single( """\ select 1;\ """, )
but this code doesn't pass strict mypy check since query_single is returning Any.
Any
I want to use typing.cast() to pass mypy check
typing.cast()
return cast(int, await executor.query_single( """\ select 1;\ """, ))
how do I achieve this? 🤔
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi! thanks for making the great database!
I'm happily learning edgedb nowdays. 😆
can we have template for code generation?
example
below edgeql generates below python code
but this code doesn't pass strict mypy check since query_single is returning
Any
.cast?
I want to use
typing.cast()
to pass mypy checkhow do I achieve this? 🤔
The text was updated successfully, but these errors were encountered: