summaryrefslogtreecommitdiff
path: root/poezio/config.py
diff options
context:
space:
mode:
authormathieui <mathieui@mathieui.net>2021-03-14 22:41:56 +0100
committermathieui <mathieui@mathieui.net>2021-04-02 17:44:36 +0200
commit14c09ce1cdbf6dc114a5a7acc085431c3430865e (patch)
tree3b01036ae396c2d8d8dd70281a83b75417a16aa6 /poezio/config.py
parent4b198be9771594a28824cc082e737fe15ab681ec (diff)
downloadpoezio-14c09ce1cdbf6dc114a5a7acc085431c3430865e.tar.gz
poezio-14c09ce1cdbf6dc114a5a7acc085431c3430865e.tar.bz2
poezio-14c09ce1cdbf6dc114a5a7acc085431c3430865e.tar.xz
poezio-14c09ce1cdbf6dc114a5a7acc085431c3430865e.zip
make pylint happy
(for now)
Diffstat (limited to 'poezio/config.py')
-rw-r--r--poezio/config.py3
1 files changed, 3 insertions, 0 deletions
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)