Skip to content
This repository was archived by the owner on Dec 18, 2021. It is now read-only.

Commit d22d2e4

Browse files
Update tictactoe.py
1 parent 49710e9 commit d22d2e4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

examples/games/tictactoe.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
import asyncio
99

1010

11-
class PascalCase(Cog):
11+
class TicTacToe(Cog):
1212
def __init__(self, bot):
1313
self.bot = bot
1414

@@ -219,4 +219,4 @@ def redsturncheck(res):
219219
def setup(bot):
220220
print('Tictactoe - by python#0001 has loaded!')
221221
DiscordComponents(bot) #if you have this in an on_ready event you can remove this line.
222-
bot.add_cog(PascalCase(bot))
222+
bot.add_cog(TicTacToe(bot))

0 commit comments

Comments
 (0)