This is the most similar question I could find, and it's 5 years old with no answer.
I have a PyCharm project where most of my imports are relative, like this:
from .. import something
However, new ones automatically added are absolute:
from project.other_package import something
Since I find absolute imports clearer, I wouldn't mind converting all the relative imports to absolute ones, but there seems to be no way to do so.
Is it possible to automatically convert all relative imports in a PyCharm project into absolute ones?