Noticed a backend error on a python exercise. When I remove the SCT, there's no problem.
If you submit the following code in this exercise:
import pickle
with open('data.pkl', ('rb')) as file:
d = pickle.load(file)
print(file)
print(type(d))
The error is:
DataCamp encountered the following error: unorderable types: NoneType() > int()
For full source code, you can check here.
@machow can you look into this?
Noticed a backend error on a python exercise. When I remove the SCT, there's no problem.
If you submit the following code in this exercise:
The error is:
For full source code, you can check here.
@machow can you look into this?