diff options
author | 2019-09-11 23:32:08 +0800 | |
---|---|---|
committer | 2019-09-11 23:32:08 +0800 | |
commit | 6da59578b515a461c07dbae203f4a799d80f44d6 (patch) | |
tree | c2e3d02dbaa4cbabf8bc1a2fa458cf5a9c2df87d /bot | |
parent | Merge branch 'text-modify-embeds' of github.com:python-discord/seasonalbot in... (diff) |
Dumb kosa forgot to relint after making a small change
Diffstat (limited to 'bot')
-rw-r--r-- | bot/seasons/evergreen/fun.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/seasons/evergreen/fun.py b/bot/seasons/evergreen/fun.py index 9fb338d3..09e447b7 100644 --- a/bot/seasons/evergreen/fun.py +++ b/bot/seasons/evergreen/fun.py @@ -73,7 +73,7 @@ class Fun(Cog): Also accepts a valid discord Message ID or link. """ def conversion_func(text): - """Randomly converts the casing of a given string""" + """Randomly converts the casing of a given string.""" return "".join( char.upper() if round(random.random()) else char.lower() for char in text ) |