Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix environment variable parsing (apache#423)
* Fix environment variable parsing ```bash export PYICEBERG_CATALOG__SOMETHING__S3__REGION=eu-north-1 ``` Before: ```python >>> from pyiceberg.catalog import load_catalog >>> load_catalog('something').properties {'s3': {'region': 'eu-north-1'}, ...} ``` After: ```python >>> from pyiceberg.catalog import load_catalog >>> load_catalog('something').properties {'s3.region': 'eu-north-1', ...} ``` Which correspondents with the key `s3.region` that we use. * Add second test Co-authored-by: Hussein Awala <[email protected]> * lint --------- Co-authored-by: Hussein Awala <[email protected]>
- Loading branch information