diff options
-rw-r--r-- | poezio/config.py | 3 |
1 files changed, 3 insertions, 0 deletions
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, |