Without any code example is difficult to know what is the problem.
But with this code you should be able to load the file.
import os
import pickle
with (os.path.join(os.getcwd(), 'possible_successors.pickle'), 'rb') as file:
data = pickle.load(file)