From de265268da94e7ee7a6b3ada364a9d5346848022 Mon Sep 17 00:00:00 2001 From: mathieui Date: Thu, 25 Mar 2021 22:30:38 +0100 Subject: fix: add back the remove_section() for Config --- 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 89923eb2..fd3d8c83 100644 --- a/poezio/config.py +++ b/poezio/config.py @@ -245,6 +245,9 @@ class Config: def add_section(self, *args, **kwargs): return self.configparser.add_section(*args, **kwargs) + def remove_section(self, *args, **kwargs): + return self.configparser.remove_section(*args, **kwargs) + def get_by_tabname(self, option, tabname: str, -- cgit v1.2.3