From 82cf32a6cf265927de49d0f5220ad13e0131d95e Mon Sep 17 00:00:00 2001 From: Heckad Date: Sat, 19 Oct 2019 16:12:58 +0300 Subject: [PATCH] - fix typo --- lib/sqlalchemy/testing/fixtures.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/sqlalchemy/testing/fixtures.py b/lib/sqlalchemy/testing/fixtures.py index 953b229f29..e2237fb171 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 -- 2.47.2