Skip to content
This repository has been archived by the owner on Jul 27, 2022. It is now read-only.

follow pep8 #4

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions cogs/security.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import string
import aiofiles

class security(commands.Cog):
class Security(commands.Cog):
def __init__(self,bot):
self.bot = bot

Expand Down Expand Up @@ -32,4 +32,4 @@ async def xkcdpassgen(self, ctx:commands.Context, length=4):
await ctx.author.send(embed=embed)

def setup(bot):
bot.add_cog(security(bot))
bot.add_cog(Security(bot))