Instead of using from backend.utils import *, try using from .utils import *. If anything you are importing from the other file contains backend.thingyouimport, remove the backend part and just use .thingyouimport.
from backend.utils import *
from .utils import *
backend.thingyouimport
backend
.thingyouimport