diff --git a/scripts/weather.py b/scripts/weather.py index 0c5e9ad..90e2a4f 100755 --- a/scripts/weather.py +++ b/scripts/weather.py @@ -5,5 +5,7 @@ import sys req = requests.get(f'https://wttr.in/{sys.argv[1]}?format="%t:%c:%C"').text[1:-1].split(':') +req[0] = req[0][1:] if req[0][0] == '+' else req[0] + print('{' + f'"text": "{req[0]} {req[1]}", "tooltip": "", "class": "{req[2]}"' + '}')