Skip to content

Commit

Permalink
Naprawiono błąd w version checkerze pojawiajacy się w pythonie >= 3.11
Browse files Browse the repository at this point in the history
  • Loading branch information
TowarzyszFatCat authored Jun 17, 2024
1 parent 2616879 commit 89fd5cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ def check_update() -> None:
if response.json()["name"] != VERSION:

print(colored("Wersja programu:", "white"), colored(VERSION, "red"))
print(colored('Najnowsza wersja:', "white"), colored(f"{response.json()["name"]}", "green"))
print(colored('Najnowsza wersja:', "white"), colored(f"{response.json()['name']}", "green"))
print('')
print(colored("Dostępna jest nowa wersja doccli!", "white"))
print('')
Expand Down

0 comments on commit 89fd5cb

Please sign in to comment.