From b5fb6ecf93c3c5e36e49293ecd17ca5a6a4f13d1 Mon Sep 17 00:00:00 2001 From: Fabio Manganiello Date: Fri, 6 Jul 2018 02:21:38 +0200 Subject: [PATCH] Added call to parent constructor in lastfm plugin --- platypush/plugins/lastfm/__init__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/platypush/plugins/lastfm/__init__.py b/platypush/plugins/lastfm/__init__.py index 3ec26488a..9ac594fd1 100644 --- a/platypush/plugins/lastfm/__init__.py +++ b/platypush/plugins/lastfm/__init__.py @@ -28,6 +28,7 @@ class LastfmPlugin(Plugin): :type api_key: str """ + super().__init__() self.api_key = api_key self.api_secret = api_secret self.username = username