Skip to content

Commit

Permalink
fix: expand user path from args
Browse files Browse the repository at this point in the history
  • Loading branch information
chadsr committed May 27, 2024
1 parent 8558af3 commit b4e6b82
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion waybar_crypto.py
Original file line number Diff line number Diff line change
Expand Up @@ -359,7 +359,7 @@ def parse_args() -> Args:
def main():
args = parse_args()

config_path = args["config_path"]
config_path = os.path.expanduser(args["config_path"])
if not os.path.isfile(config_path):
raise WaybarCryptoException(f"configuration file not found at '{config_path}'")

Expand Down

0 comments on commit b4e6b82

Please sign in to comment.