summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy
diff options
context:
space:
mode:
authorHeckad <heckad@yandex.ru>2019-10-19 16:12:58 +0300
committerHeckad <heckad@yandex.ru>2019-10-19 16:12:58 +0300
commit82cf32a6cf265927de49d0f5220ad13e0131d95e (patch)
treea1b4ea0af2229d610320fba92becfa4b87752616 /lib/sqlalchemy
parentabcd84155b9ce16c333845a05d8029fc13a22ccf (diff)
downloadsqlalchemy-82cf32a6cf265927de49d0f5220ad13e0131d95e.tar.gz
- fix typo
Diffstat (limited to 'lib/sqlalchemy')
-rw-r--r--lib/sqlalchemy/testing/fixtures.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sqlalchemy/testing/fixtures.py b/lib/sqlalchemy/testing/fixtures.py
index 953b229f2..e2237fb17 100644
--- a/lib/sqlalchemy/testing/fixtures.py
+++ b/lib/sqlalchemy/testing/fixtures.py
@@ -377,7 +377,7 @@ class DeclarativeMappedTest(MappedTest):
class FindFixtureDeclarative(DeclarativeMeta):
def __init__(cls, classname, bases, dict_):
cls_registry[classname] = cls
- return DeclarativeMeta.__init__(cls, classname, bases, dict_)
+ DeclarativeMeta.__init__(cls, classname, bases, dict_)
class DeclarativeBasic(object):
__table_cls__ = schema.Table