To organize better the code in my QGIS 3 Plugin, I tried to put all dialogs in one package called dialogs, but when I open QGIS it says ModuleNotFoundError: No module named 'dialogs'
This is the code I used to import the Dialog class in the "main" file, where there's run method (luniPlugin.py in this case)
from dialogs.select_feature_dialog import SelectFeatureDialog (and the same for the others dialogs)
This is the folder where the project is:
And, finally, this is the content of the folder "dialogs":
Since python compiler has not given me errors, I'm wondering if it's possible to do this "unpacking" in a QGIS Plugin or if it's simple my mistake.

