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.
2 parents 8d1e22b + b756bd8 commit 2a699adCopy full SHA for 2a699ad
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