From 0416077aabc56bdafd631167750d322ebb8d44ac Mon Sep 17 00:00:00 2001 From: Heikki Laaksonen Date: Sun, 9 Jun 2019 20:41:34 +0300 Subject: [PATCH] Fix lint warning to fix Travis CI There are accidental TODO comment that was not allowed by Pylint default settings. Signed-off-by: Heikki Laaksonen --- snippy/config/source/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/snippy/config/source/base.py b/snippy/config/source/base.py index 65e4f1a8..14ddf665 100644 --- a/snippy/config/source/base.py +++ b/snippy/config/source/base.py @@ -302,7 +302,7 @@ def init_conf(self, parameters): # pylint: disable=too-many-statements if self.plugin: self.plugin = self.plugins[self.plugin[0]] - # TODO test to load plugin. + # test to load plugin. if self.plugin: import sys print(self.plugin.entry_points[0].value)