Skip to content

Commit

Permalink
fix: expand user path from args (#90)
Browse files Browse the repository at this point in the history
  • Loading branch information
chadsr authored May 27, 2024
1 parent 8558af3 commit cf53b67
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 cf53b67

Please sign in to comment.