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
add code action that let users to update import statement.
frommoduleimportA, BA()
B()
to
importmodulemodule.A()
module.A()
also, if possible, let pylance to find good abbr for module and also suggest that will convert the code to
importmoduleasmm.A()
m.B()
that also understand well known abbr such as np, pd and etc.
...
also, if possible, add new option such as always use 'import' statement instead of 'from xxx import' and add/auto import always add import statement with module.A form.
The text was updated successfully, but these errors were encountered:
add code action that let users to update import statement.
to
also, if possible, let pylance to find good abbr for
module
and also suggest that will convert the code tothat also understand well known abbr such as
np
,pd
and etc....
also, if possible, add new option such as
always use 'import' statement instead of 'from xxx import'
andadd/auto import
always addimport statement
withmodule.A
form.The text was updated successfully, but these errors were encountered: