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
In some scenarios, before an import is made, it requires another import which also needs to execute a regular Python statement:
import a
a.foo()
import b # requires both statements above
There should be ability to skip such import sections:
<imports>
# block importanize |
import a | will
a.foo() | not be
import b # requires both statements above | organized
# endblock importanize |
<more imports>
The text was updated successfully, but these errors were encountered:
In some scenarios, before an import is made, it requires another import which also needs to execute a regular Python statement:
There should be ability to skip such import sections:
The text was updated successfully, but these errors were encountered: