The google python style guide suggests enforcing one import per line which can be achieved with the force_single_line option. However they also suggest an exception for the typing module. I can't find any way of specifying this to isort, does it exist? If not would it be much effort to implement? I imagine that a nice way of doing this would be to allow specifying certain packages as overrides for the force_single_line rule.
The google python style guide suggests enforcing one import per line which can be achieved with the
force_single_lineoption. However they also suggest an exception for thetypingmodule. I can't find any way of specifying this to isort, does it exist? If not would it be much effort to implement? I imagine that a nice way of doing this would be to allow specifying certain packages as overrides for theforce_single_linerule.