I am working on a project that used to use python 2, but does not anymore.
I see many lines of code like these :
from __future__ import absolute_import
Can I safely remove them all ?
From what I read, it seems it was only used in python 2 to mimic Python 3 behavior
CF linked question : What does from __future__ import absolute_import actually do?
As well this source :
Using the absolute_import line in Python 2 changes the search strategy to mimic the Python 3 search strategy