]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
- fix typo 4929/head
authorHeckad <heckad@yandex.ru>
Sat, 19 Oct 2019 13:12:58 +0000 (16:12 +0300)
committerHeckad <heckad@yandex.ru>
Sat, 19 Oct 2019 13:12:58 +0000 (16:12 +0300)
lib/sqlalchemy/testing/fixtures.py

index 953b229f298448adccb19ef0aa1a6b2385a8f469..e2237fb17133fa489b03ec0fe0d94319a191a7dd 100644 (file)
@@ -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