You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This note from types-invoke makes me think I would be losing something
Note: The invoke package includes type annotations or type stubs since version 2.1.2. Please uninstall the types-invoke package if you use this or a newer version.
I am using vscode. I get a pylance warning:
"task" is not exported from module "invoke"
This is from this line:
from invoke import task
It all works, but is a little annoying.
I'm not sure the sophisticated way to do it in a library, but you could add a complete
__all__=
in your main__init__.py
.For instace:
This is also covered in #814, but I think the solution mentioned there is not ideal.
The text was updated successfully, but these errors were encountered: