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 there!
I would really appreciate if the methods were defined with correct return data type as specified in PEP-484.
This would help with typing hints where the IDE can correctly determine how to help out with the right methods and variables.
Some examples on places I've stumbled into this:
create_ppol
Pool
Pool.acquire()
Connection
Connection.fetch()
list of Record
Connection.fetchrow()
Record or None
The text was updated successfully, but these errors were encountered:
@Yrlish PRs are welcome!
Sorry, something went wrong.
No branches or pull requests
Hi there!
I would really appreciate if the methods were defined with correct return data type as specified in PEP-484.
This would help with typing hints where the IDE can correctly determine how to help out with the right methods and variables.
Some examples on places I've stumbled into this:
create_ppol
should type hintPool
Pool.acquire()
should type hintConnection
Connection.fetch()
should type hintlist of Record
Connection.fetchrow()
should type hintRecord or None
The text was updated successfully, but these errors were encountered: