diff options
author | mathieui <mathieui@mathieui.net> | 2021-03-25 22:30:38 +0100 |
---|---|---|
committer | mathieui <mathieui@mathieui.net> | 2021-04-02 17:44:36 +0200 |
commit | de265268da94e7ee7a6b3ada364a9d5346848022 (patch) | |
tree | fe7ea7c4b423e5fbed54b137d00160d2fe5c1e1a | |
parent | 388990bb42b618c4d364486b64c34605cf6a045b (diff) | |
download | poezio-de265268da94e7ee7a6b3ada364a9d5346848022.tar.gz poezio-de265268da94e7ee7a6b3ada364a9d5346848022.tar.bz2 poezio-de265268da94e7ee7a6b3ada364a9d5346848022.tar.xz poezio-de265268da94e7ee7a6b3ada364a9d5346848022.zip |
fix: add back the remove_section() for Config
-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, |