OpenAOI/anodet

Fix import structure

Closed this issue · 0 comments

rewrite the imports to enclosed import instead of row-breaking ones.
from abcde import a, b, c / d, e
Should become
from abcde import (a, b, d, d, e)