Skip to content

Commit

Permalink
change double to single quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
lbatalha committed Apr 1, 2024
1 parent 56c6363 commit d5236de
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -159,8 +159,8 @@ def time(cmd):
def weather(cmd):
if not cmd.args:
return
flags = "format=**%l:**+%c+++🌑+`%t(%f)`++πŸ’¦+`%h`++πŸ’¨+`%w`++**β˜”**+`%p/3h`++**UVI:**+`%u`\
\n**Time:**+`%T`++**Sunrise:**+`%S`++**Sunset:**+`%s`++**Moon:**+%m"
flags = 'format=**%l:**+%c+++🌑+`%t(%f)`++πŸ’¦+`%h`++πŸ’¨+`%w`++**β˜”**+`%p/3h`++**UVI:**+`%u`\
\n**Time:**+`%T`++**Sunrise:**+`%S`++**Sunset:**+`%s`++**Moon:**+%m'
location = cmd.args
if location.isdecimal() and len(location) == 5:
location += '-us'
Expand Down

0 comments on commit d5236de

Please sign in to comment.