ModuleNotFoundError: No module named 'cogs'
www.py4u.net › discuss › 175463Answer #1: It looks like it might be a case-sensitive issue. When iterating over the directory's contents, you have written .\Cogs as the path, but in the load_extension () method, you have written cogs.. Try changing it to Cogs. instead. Either that, or rename the directory itself all lower-case to cogs. Answered By: Diggy.