fix: add back the remove_section() for Config

This commit is contained in:
mathieui 2021-03-25 22:30:38 +01:00
parent 388990bb42
commit de265268da

View file

@ -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,