diff options
-rw-r--r-- | bot/seasons/easter/bunny_name_generator.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/bot/seasons/easter/bunny_name_generator.py b/bot/seasons/easter/bunny_name_generator.py index f8d0eea3..5dcbe62f 100644 --- a/bot/seasons/easter/bunny_name_generator.py +++ b/bot/seasons/easter/bunny_name_generator.py @@ -19,9 +19,7 @@ class BunnyNameGenerator(commands.Cog): self.bot = bot def find_separators(self, displayname): - """ - Check if Discord name contains spaces so we can bunnify an individual word in the name. - """ + """Check if Discord name contains spaces so we can bunnify an individual word in the name.""" new_name = re.split(r'[_.\s]', str(displayname)) if displayname not in new_name: |