fix: add back the remove_section() for Config
This commit is contained in:
parent
388990bb42
commit
de265268da
1 changed files with 3 additions and 0 deletions
|
@ -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,
|
||||
|
|
Loading…
Reference in a new issue