'isort config to always have multiple imports in parenthesis

I am looking for an isort config to have one line per import if it's a single import but as soon as you have multiple imports it switches to parenthesis, so it would look like the following

from something import one_thing
from another.thing import (
    uno,
    due,
    tres,
)


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source