summaryrefslogtreecommitdiff
path: root/src/zope/i18n/tests/testi18nawareobject.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/zope/i18n/tests/testi18nawareobject.py')
-rw-r--r--src/zope/i18n/tests/testi18nawareobject.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/zope/i18n/tests/testi18nawareobject.py b/src/zope/i18n/tests/testi18nawareobject.py
index 996416b..bc71044 100644
--- a/src/zope/i18n/tests/testi18nawareobject.py
+++ b/src/zope/i18n/tests/testi18nawareobject.py
@@ -15,12 +15,13 @@
"""
import unittest
-from zope.i18n.interfaces import II18nAware
from zope.interface import implementer
+from zope.i18n.interfaces import II18nAware
+
@implementer(II18nAware)
-class I18nAwareContentObject(object):
+class I18nAwareContentObject:
def __init__(self):
self.content = {}
@@ -55,7 +56,7 @@ class I18nAwareContentObject(object):
############################################################
-class AbstractTestII18nAwareMixin(object):
+class AbstractTestII18nAwareMixin:
def setUp(self):
self.object = self._createObject()