From c7d17a9898e9450fdef5fca70ac2173c14a5101a Mon Sep 17 00:00:00 2001 From: Si11ium Date: Fri, 26 Jun 2020 08:33:58 +0200 Subject: [PATCH] 6D prediction files now working --- utils/config.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/utils/config.py b/utils/config.py index 8cd88bb..68f6595 100644 --- a/utils/config.py +++ b/utils/config.py @@ -201,3 +201,9 @@ class Config(ConfigParser, ABC): with path.open('w') as configfile: super().write(configfile) return True + + def _write_section(self, fp, section_name, section_items, delimiter): + if section_name == 'project': + return + else: + super(Config, self)._write_section(fp, section_name, section_items, delimiter)