I am using VS Code with Python extension. However when I import * from package and use it:
*
from mongoengine import * someMethodFromPackage()
warning appears:
Is there any way to fix this warning without explicit naming of all imported classes?
from mongoengine import Document, StringField, EmailField, BinaryField, IntField, FloatField, ...
2.1m questions
2.1m answers
60 comments
57.0k users