diff --git a/.config/i3/pass_typer.py b/.config/i3/pass_typer.py index 901a7b8..576d201 100755 --- a/.config/i3/pass_typer.py +++ b/.config/i3/pass_typer.py @@ -5,10 +5,10 @@ import re import subprocess from functools import partial from itertools import chain -from pathlib import PosixPath +from pathlib import Path -PASSWORD_STORE = PosixPath( - os.environ.get("PASSWORD_STORE_DIR", PosixPath("~/.password-store").expanduser()) +PASSWORD_STORE = Path( + os.environ.get("PASSWORD_STORE_DIR", Path("~/.password-store").expanduser()) ) cmd = partial(subprocess.run, capture_output=True, encoding="ascii")