diff --git a/.config/i3/pass_typer.py b/.config/i3/pass_typer.py index 8cb25f7..70555ce 100755 --- a/.config/i3/pass_typer.py +++ b/.config/i3/pass_typer.py @@ -38,7 +38,7 @@ def rofi_select(options: list[str]) -> str: return rofi.stdout.strip() -def get_password(password_name: str) -> None: +def get_password(password_name: str) -> str: pass_result = cmd(["pass", password_name]) password, _, _ = pass_result.stdout.partition("\n") return password