From 287023498e9799a98d0cc560b3a1e451d75afb85 Mon Sep 17 00:00:00 2001 From: Brian Fink Date: Tue, 28 Oct 2014 22:10:28 -0400 Subject: [PATCH] BUG: Fix flake8 --- zipline/protocol.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zipline/protocol.py b/zipline/protocol.py index 409dcd2a..e746dedb 100644 --- a/zipline/protocol.py +++ b/zipline/protocol.py @@ -166,7 +166,7 @@ class Account(object): return "Account({0})".format(self.__dict__) def serialize(self): - return 'Account', self.__dict__ + return 'Account', self.__dict__ def reconstruct(self, saved_state): self.__dict__.update(saved_state)