From 14c09ce1cdbf6dc114a5a7acc085431c3430865e Mon Sep 17 00:00:00 2001 From: mathieui Date: Sun, 14 Mar 2021 22:41:56 +0100 Subject: make pylint happy (for now) --- poezio/config.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'poezio/config.py') diff --git a/poezio/config.py b/poezio/config.py index bb51eba1..54fab069 100644 --- a/poezio/config.py +++ b/poezio/config.py @@ -240,6 +240,9 @@ class Config: def options(self, *args, **kwargs): return self.configparser.options(*args, **kwargs) + def has_option(self, *args, **kwargs): + return self.configparser.has_option(*args, **kwargs) + def has_section(self, *args, **kwargs): return self.configparser.has_section(*args, **kwargs) -- cgit v1.2.3