update requirements to include bs4

This commit is contained in:
phixxy 2024-05-27 02:06:22 -07:00
parent 601bb682f7
commit 995bb08a0a
2 changed files with 3 additions and 2 deletions

View file

@ -40,7 +40,7 @@ class SaltStraw(BotBaseCog):
message = "" message = ""
for item in flavor_dict: for item in flavor_dict:
print(f"\n{item}:\n{flavor_dict[item]}\n\n") print(f"\n{item}:\n{flavor_dict[item]}\n\n")
message += f"\n{item}:\n{flavor_dict[item]}\n\n" message += f"\n{item}:\n"
return message return message
async def setup(bot): async def setup(bot):

View file

@ -9,3 +9,4 @@ psutil
aiofiles aiofiles
inky inky
wakeonlan wakeonlan
beautifulsoup4