Imports could be ordered either: ``` import a import z from a import b from z import y ``` or ``` import a from a import b import z from z import y ``` There should be a config to determine style. Default should be imports first (my preference).