diff options
| author | Heckad <heckad@yandex.ru> | 2019-10-19 16:12:58 +0300 |
|---|---|---|
| committer | Heckad <heckad@yandex.ru> | 2019-10-19 16:12:58 +0300 |
| commit | 82cf32a6cf265927de49d0f5220ad13e0131d95e (patch) | |
| tree | a1b4ea0af2229d610320fba92becfa4b87752616 /lib | |
| parent | abcd84155b9ce16c333845a05d8029fc13a22ccf (diff) | |
| download | sqlalchemy-82cf32a6cf265927de49d0f5220ad13e0131d95e.tar.gz | |
- fix typo
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/sqlalchemy/testing/fixtures.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sqlalchemy/testing/fixtures.py b/lib/sqlalchemy/testing/fixtures.py index 953b229f2..e2237fb17 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 |
