From d13580541d70baae75103d713a76eaff4a7f30b7 Mon Sep 17 00:00:00 2001 From: Onkel Andy Date: Sun, 29 Oct 2023 00:12:31 +0200 Subject: [PATCH] mailrcv plugin: add super().__init__() , push version to 1.4.2 --- mailrcv/__init__.py | 3 ++- mailrcv/plugin.yaml | 4 +--- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/mailrcv/__init__.py b/mailrcv/__init__.py index 4233e0a55..16c35e3ec 100755 --- a/mailrcv/__init__.py +++ b/mailrcv/__init__.py @@ -29,9 +29,10 @@ class IMAP(SmartPlugin): ALLOW_MULTIINSTANCE = True - PLUGIN_VERSION = "1.4.1" + PLUGIN_VERSION = "1.4.2" def __init__(self, sh, *args, **kwargs): + super().__init__() self._host = self.get_parameter_value('host') self._port = self.get_parameter_value('port') self._username = self.get_parameter_value('username') diff --git a/mailrcv/plugin.yaml b/mailrcv/plugin.yaml index 4339cc5c6..c8616ca77 100755 --- a/mailrcv/plugin.yaml +++ b/mailrcv/plugin.yaml @@ -12,7 +12,7 @@ plugin: # documentation: https://github.com/smarthomeNG/smarthome/wiki/CLI-Plugin # url of documentation (wiki) page # support: https://knx-user-forum.de/forum/supportforen/smarthome-py - version: 1.4.1 # Plugin version + version: 1.4.2 # Plugin version sh_minversion: 1.4 # minimum shNG version to use this plugin # sh_maxversion: # maximum shNG version to use this plugin (leave empty if latest) multi_instance: True # plugin supports multi instance @@ -85,5 +85,3 @@ plugin_functions: NONE logic_parameters: NONE # Definition of logic parameters defined by this plugin - -