Skip to content

Commit f22f1b3

Browse files
committed
Add back expanduser call to home_dir
1 parent f176556 commit f22f1b3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

python-client/giskard/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ class Config:
4242

4343
@property
4444
def home_dir(self) -> Path:
45-
return Path(expand_env_var(self.home)).resolve()
45+
return Path(expand_env_var(self.home)).expanduser().resolve()
4646

4747
@classmethod
4848
def build_from_env(cls) -> "Settings":

0 commit comments

Comments
 (0)