Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Resolves the loading errors with 3.5 #22

Merged
merged 1 commit into from
May 15, 2023
Merged
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,7 @@ venv/
ENV/
env.bak/
venv.bak/
.red

# Spyder project settings
.spyderproject
Expand Down
4 changes: 2 additions & 2 deletions cclookup/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from .cclookup import CCLookup


def setup(bot):
bot.add_cog(CCLookup(bot))
async def setup(bot):
await bot.add_cog(CCLookup(bot))
4 changes: 2 additions & 2 deletions dmcompile/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from .dmcompile import DMCompile

def setup(bot):
bot.add_cog(DMCompile(bot))
async def setup(bot):
await bot.add_cog(DMCompile(bot))
4 changes: 2 additions & 2 deletions getnotes/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from .getnotes import GetNotes


def setup(bot):
bot.add_cog(GetNotes(bot))
async def setup(bot):
await bot.add_cog(GetNotes(bot))
4 changes: 2 additions & 2 deletions status/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from .ss13status import SS13Status

def setup(bot):
bot.add_cog(SS13Status(bot))
async def setup(bot):
await bot.add_cog(SS13Status(bot))
4 changes: 2 additions & 2 deletions verifyckey/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from .verifyckey import VerifyCkey

def setup(bot):
bot.add_cog(VerifyCkey(bot))
async def setup(bot):
await bot.add_cog(VerifyCkey(bot))