Open AlexDo1 opened 1 year ago
Loading and reading the metacatalog CONFIGFILE is currently done in the following way: https://github.com/VForWaTer/metacatalog/blob/1219f7f621193fb86063d924188260421508095e/metacatalog/ext/__init__.py#L56-L61
CONFIGFILE
It would be nice to read and get values from CONFIGFILE directly without the need of the with open(CONFIGFILE) as f block.
with open(CONFIGFILE) as f
Loading and reading the metacatalog
CONFIGFILE
is currently done in the following way: https://github.com/VForWaTer/metacatalog/blob/1219f7f621193fb86063d924188260421508095e/metacatalog/ext/__init__.py#L56-L61It would be nice to read and get values from
CONFIGFILE
directly without the need of thewith open(CONFIGFILE) as f
block.