From: Heckad Date: Sat, 19 Oct 2019 13:12:58 +0000 (+0300) Subject: - fix typo X-Git-Tag: rel_1_3_11~31 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c13d9fcff4b7f302b038a8729485e21d8191ae2b;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git - fix typo (cherry picked from commit 82cf32a6cf265927de49d0f5220ad13e0131d95e) --- 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