]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
- fix typo
authorHeckad <heckad@yandex.ru>
Sat, 19 Oct 2019 13:12:58 +0000 (16:12 +0300)
committerMike Bayer <mike_mp@zzzcomputing.com>
Sun, 20 Oct 2019 15:17:15 +0000 (11:17 -0400)
(cherry picked from commit 82cf32a6cf265927de49d0f5220ad13e0131d95e)

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