diff --git a/parquet_store/__init__.py b/parquet_store/__init__.py index a0296ea..72af03f 100644 --- a/parquet_store/__init__.py +++ b/parquet_store/__init__.py @@ -44,7 +44,7 @@ def __getitem__(self, key): class ParquetStore: def __init__(self, root_path, engine="fastparquet") -> None: - self.root_path = Path(root_path) + self.root_path = Path(root_path).expanduser() self.engine = engine @property