We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8d1e22b commit b756bd8Copy full SHA for b756bd8
pgserviceparser/__init__.py
@@ -60,7 +60,7 @@ def full_config(conf_file_path: Optional[Path] = None) -> configparser.ConfigPar
60
if not conf_file_path.exists():
61
raise ServiceFileNotFound(pg_service_filepath=conf_file_path)
62
63
- config = configparser.ConfigParser()
+ config = configparser.ConfigParser(interpolation=None)
64
config.read(conf_file_path)
65
return config
66
0 commit comments