Skip to content

Commit

Permalink
Fixed end of file.
Browse files Browse the repository at this point in the history
  • Loading branch information
JelmerKorten committed Feb 12, 2024
1 parent 54a4622 commit a03b682
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bot/exts/fun/fun.py
Original file line number Diff line number Diff line change
Expand Up @@ -245,4 +245,4 @@ async def joke(self, ctx: commands.Context, category: Literal["neutral", "chuck"

async def setup(bot: Bot) -> None:
"""Load the Fun cog."""
await bot.add_cog(Fun(bot))
await bot.add_cog(Fun(bot))
2 changes: 1 addition & 1 deletion bot/utils/helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,4 @@ def neutralise_string(txt: str) -> str:

# strip white spaces and make lowercase
words = [word.strip().lower() for word in words]
return " ".join(words)
return " ".join(words)

0 comments on commit a03b682

Please sign in to comment.