6D prediction files now working
This commit is contained in:
parent
7770b29c14
commit
c7d17a9898
@ -201,3 +201,9 @@ class Config(ConfigParser, ABC):
|
|||||||
with path.open('w') as configfile:
|
with path.open('w') as configfile:
|
||||||
super().write(configfile)
|
super().write(configfile)
|
||||||
return True
|
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)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user