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 When calling methods like .save(), .insert(), .update(), and .delete() I get the following warning from PyCharm:
.save()
.insert()
.update()
.delete()
Parameter(s) unfilled Possible callees:(..., ...: [Any, Any])
Although, everything works fine, so it is something related to typing.
To Reproduce
from beanie import Document class Foo(Document): bar: int async def func(): foo = Foo(bar=1) await foo.save() # warning here await foo.insert() # warning here await foo.update() # warning here await foo.delete() # warning here
Expected behavior No warning is displayed.
Additional context PyCharm 2024.3.1.1 Python 3.10 Beanie 1.28.0
The text was updated successfully, but these errors were encountered:
upvote
Sorry, something went wrong.
Previous two solutions do not fix the issue
No branches or pull requests
Describe the bug
When calling methods like
.save()
,.insert()
,.update()
, and.delete()
I get the following warning from PyCharm:Although, everything works fine, so it is something related to typing.
To Reproduce
Expected behavior
No warning is displayed.
Additional context
PyCharm 2024.3.1.1
Python 3.10
Beanie 1.28.0
The text was updated successfully, but these errors were encountered: