From: Heckad Date: Sat, 19 Oct 2019 13:12:58 +0000 (+0300) Subject: - fix typo X-Git-Tag: rel_1_4_0b1~664^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F4929%2Fhead;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git - fix typo --- 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