diff --git a/sphere/sphere.py b/sphere/sphere.py index 6a3d01e546173da041060a9437de2aaede04f7c9..0054e413903cba4837b64c374fda2dba0e151dbe 100644 --- a/sphere/sphere.py +++ b/sphere/sphere.py @@ -34,8 +34,8 @@ class Sphere(object): def dump(self, filename): # *** STEP 6 *** # uncomment the 2 following line - #with open(filename, "w") as f: - # pickle.dump(self, f) + with open(filename, "w") as f: + pickle.dump(self, f) pass def loadSphere(filename):