From 6cf0f39a03805aa5aa6c2535f1a64a1d13740048 Mon Sep 17 00:00:00 2001 From: Fabio Manganiello Date: Fri, 6 Jul 2018 03:03:09 +0200 Subject: [PATCH] Added call to parent constructor in db plugin --- platypush/plugins/db/__init__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/platypush/plugins/db/__init__.py b/platypush/plugins/db/__init__.py index cc4645ec..078bd48b 100644 --- a/platypush/plugins/db/__init__.py +++ b/platypush/plugins/db/__init__.py @@ -29,6 +29,7 @@ class DbPlugin(Plugin): :param kwargs: Extra kwargs that will be passed to ``sqlalchemy.create_engine`` (see http://docs.sqlalchemy.org/en/latest/core/engines.html) """ + super().__init__() self.engine = self._get_engine(engine, *args, **kwargs)