MAINT: Updated the naming scheme from reconstruct to set_state

This commit is contained in:
Delaney Granizo-Mackenzie
2014-10-29 14:30:26 -04:00
parent 589c014f73
commit 1c08f60f7c
+1 -1
View File
@@ -168,7 +168,7 @@ class Account(object):
def _get_state(self):
return 'Account', self.__dict__
def _reconstruct(self, saved_state):
def _set_state(self, saved_state):
self.__dict__.update(saved_state)