summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/testing/pickleable.py
diff options
context:
space:
mode:
authorBrian Jarrett <celttechie@gmail.com>2014-07-20 12:44:40 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2014-07-20 12:44:40 -0400
commitcca03097f47f22783d42d1853faac6cf84607c5a (patch)
tree4fe1a63d03a2d88d1cf37e1167759dfaf84f4ce7 /lib/sqlalchemy/testing/pickleable.py
parent827329a0cca5351094a1a86b6b2be2b9182f0ae2 (diff)
downloadsqlalchemy-cca03097f47f22783d42d1853faac6cf84607c5a.tar.gz
- apply pep8 formatting to sqlalchemy/sql, sqlalchemy/util, sqlalchemy/dialects,
sqlalchemy/orm, sqlalchemy/event, sqlalchemy/testing
Diffstat (limited to 'lib/sqlalchemy/testing/pickleable.py')
-rw-r--r--lib/sqlalchemy/testing/pickleable.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/sqlalchemy/testing/pickleable.py b/lib/sqlalchemy/testing/pickleable.py
index fe68457e8..5a903aae7 100644
--- a/lib/sqlalchemy/testing/pickleable.py
+++ b/lib/sqlalchemy/testing/pickleable.py
@@ -63,8 +63,8 @@ class Foo(object):
def __eq__(self, other):
return other.data == self.data and \
- other.stuff == self.stuff and \
- other.moredata == self.moredata
+ other.stuff == self.stuff and \
+ other.moredata == self.moredata
class Bar(object):