afer moving some code in many modules, python throw this error
the best thing is, the fun fact there is no import of module named Classes
def loadData():
data = []
with open('data.pkl', 'rb') as file:
data = pk.load(file)
return data
data = pk.load(file)
^^^^^^^^^^^^^
ModuleNotFoundError: No module named ‘Classes’
there is the import list of this module
import hashlib
import json
import pickle as pk
from datetime import datetime
i’m using pycharm, tried put init.py in directories but nothing changed, cleared chached thing from pycharm in this project folder