From 1c08f60f7cb41b06a761c1f9c9ccebcd902271e1 Mon Sep 17 00:00:00 2001 From: Delaney Granizo-Mackenzie Date: Wed, 29 Oct 2014 14:30:26 -0400 Subject: [PATCH] MAINT: Updated the naming scheme from reconstruct to set_state --- zipline/protocol.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zipline/protocol.py b/zipline/protocol.py index 6b4fb999..f17ce726 100644 --- a/zipline/protocol.py +++ b/zipline/protocol.py @@ -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)