AttributeError: module 'embed storage' has no attribute 'help_command'
AttributeError: module 'embed storage' has no attribute 'help_command'
我有这个模块是我为 discord.py 机器人(虽然不是 COG)制作的。它显然定义了函数“help_command”,但每当我尝试 运行 时,它都会给我上述错误。我无法全神贯注,所以我认为向社区询问可能是值得的。
discord_main.py
import discord
from discord.ext import commands
import gsheet
import os
import embed_storage
async def help(ctx, argument='Helping'):
await ctx.send(embed=embed_storage.help_command('stargazer', argument))
embed_storage.py
import discord
from cogs.points import points_help_dict
from discord_main import help_dictionary
import gsheet
def help_command(cog_name: str, command: str):
if cog_name == 'stargazer':
use_dict = help_dictionary
title = 'Help'
description = 'Learn how the Stargazer Bot works'
footer_message = 'Prefix for this bot is \'a\''
else:
raise UnboundLocalError(
"Yeh this part of the code should have never run.")
command = command.lower()
if command in use_dict:
title = command.title()
description = use_dict[command]
field = False
help_command_embed = discord.Embed(
title=title,
description=description,
colour=discord.Colour.from_rgb(234, 255, 208)
)
return help_command_embed
任何帮助都会很棒。也很抱歉这个愚蠢的问题。只是无法解决这个愚蠢的错误。
编辑:尝试回滚到我最新的代码工作版本,当我 运行 那个。它仍然给了我同样的错误。所以错误不在新添加的代码中
我认为问题在于您在 embed_storage
中从 discord_main
导入,反之亦然。
你需要以某种方式解决这个问题,或者,如果没有其他办法,你可以将导入移动到函数定义中,例如在 embed_storage.py
:
def help_command(cog_name: str, command: str):
from discord_main import help_dictionary
if cog_name == 'stargazer':
use_dict = help_dictionary
# ...
我有这个模块是我为 discord.py 机器人(虽然不是 COG)制作的。它显然定义了函数“help_command”,但每当我尝试 运行 时,它都会给我上述错误。我无法全神贯注,所以我认为向社区询问可能是值得的。
discord_main.py
import discord
from discord.ext import commands
import gsheet
import os
import embed_storage
async def help(ctx, argument='Helping'):
await ctx.send(embed=embed_storage.help_command('stargazer', argument))
embed_storage.py
import discord
from cogs.points import points_help_dict
from discord_main import help_dictionary
import gsheet
def help_command(cog_name: str, command: str):
if cog_name == 'stargazer':
use_dict = help_dictionary
title = 'Help'
description = 'Learn how the Stargazer Bot works'
footer_message = 'Prefix for this bot is \'a\''
else:
raise UnboundLocalError(
"Yeh this part of the code should have never run.")
command = command.lower()
if command in use_dict:
title = command.title()
description = use_dict[command]
field = False
help_command_embed = discord.Embed(
title=title,
description=description,
colour=discord.Colour.from_rgb(234, 255, 208)
)
return help_command_embed
任何帮助都会很棒。也很抱歉这个愚蠢的问题。只是无法解决这个愚蠢的错误。
编辑:尝试回滚到我最新的代码工作版本,当我 运行 那个。它仍然给了我同样的错误。所以错误不在新添加的代码中
我认为问题在于您在 embed_storage
中从 discord_main
导入,反之亦然。
你需要以某种方式解决这个问题,或者,如果没有其他办法,你可以将导入移动到函数定义中,例如在 embed_storage.py
:
def help_command(cog_name: str, command: str):
from discord_main import help_dictionary
if cog_name == 'stargazer':
use_dict = help_dictionary
# ...