I am using Python plugin to handle Python code inside an IntelliJ Java project.
I have selected refactoring "Move -> move everything to another directory..." but it doesn't update the imports!
Example, I have:
import my_server.my_project.helpers.cumulative_functions as cf
That instead should be now
import my_project.helpers.cumulative_functions as cf
Have I done something wrong? Is there a way to fix that?