summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/testing/pickleable.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/sqlalchemy/testing/pickleable.py')
-rw-r--r--lib/sqlalchemy/testing/pickleable.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/sqlalchemy/testing/pickleable.py b/lib/sqlalchemy/testing/pickleable.py
index 430cb5fb6..cf11ab03d 100644
--- a/lib/sqlalchemy/testing/pickleable.py
+++ b/lib/sqlalchemy/testing/pickleable.py
@@ -45,13 +45,13 @@ class Parent(fixtures.ComparableEntity):
pass
-class Screen(object):
+class Screen:
def __init__(self, obj, parent=None):
self.obj = obj
self.parent = parent
-class Foo(object):
+class Foo:
def __init__(self, moredata, stuff="im stuff"):
self.data = "im data"
self.stuff = stuff
@@ -67,7 +67,7 @@ class Foo(object):
)
-class Bar(object):
+class Bar:
def __init__(self, x, y):
self.x = x
self.y = y
@@ -104,7 +104,7 @@ class OldSchoolWithoutCompare:
self.y = y
-class BarWithoutCompare(object):
+class BarWithoutCompare:
def __init__(self, x, y):
self.x = x
self.y = y
@@ -113,7 +113,7 @@ class BarWithoutCompare(object):
return "Bar(%d, %d)" % (self.x, self.y)
-class NotComparable(object):
+class NotComparable:
def __init__(self, data):
self.data = data
@@ -127,7 +127,7 @@ class NotComparable(object):
return NotImplemented
-class BrokenComparable(object):
+class BrokenComparable:
def __init__(self, data):
self.data = data