Changed discord.utils import
This commit is contained in:
parent
7946b79918
commit
22a19c27f8
@ -1,6 +1,8 @@
|
||||
from discord import ApplicationContext, option, utils, Embed
|
||||
from discord.ext import commands
|
||||
from discord import ApplicationContext, Embed, option
|
||||
from discord import utils as ds_utils
|
||||
from discord.commands import SlashCommandGroup
|
||||
from discord.ext import commands
|
||||
|
||||
from classes.holo_user import HoloUser
|
||||
from enums.colors import Color
|
||||
from modules.utils import config_get
|
||||
@ -31,7 +33,7 @@ class CustomChannels(commands.Cog):
|
||||
created_channel = await ctx.user.guild.create_text_channel(
|
||||
name=name,
|
||||
reason=f"Користувач {guild_name(ctx.user)} купив канал",
|
||||
category=utils.get(
|
||||
category=ds_utils.get(
|
||||
ctx.author.guild.categories,
|
||||
id=await config_get("customchannels", "categories"),
|
||||
),
|
||||
@ -62,7 +64,7 @@ class CustomChannels(commands.Cog):
|
||||
bots = await config_get("bots")
|
||||
for bot in bots:
|
||||
await created_channel.set_permissions(
|
||||
utils.get(ctx.user.guild.roles, id=bots[bot]["role"]),
|
||||
ds_utils.get(ctx.user.guild.roles, id=bots[bot]["role"]),
|
||||
view_channel=False,
|
||||
)
|
||||
else:
|
||||
@ -88,7 +90,7 @@ class CustomChannels(commands.Cog):
|
||||
):
|
||||
holo_user_ctx = HoloUser(ctx.user)
|
||||
|
||||
custom_channel = utils.get(ctx.guild.channels, id=holo_user_ctx.customchannel)
|
||||
custom_channel = ds_utils.get(ctx.guild.channels, id=holo_user_ctx.customchannel)
|
||||
if custom_channel is None:
|
||||
await ctx.respond(
|
||||
embed=Embed(
|
||||
@ -124,7 +126,7 @@ class CustomChannels(commands.Cog):
|
||||
|
||||
if holo_user_ctx.customchannel is not None:
|
||||
await ctx.defer()
|
||||
custom_channel = utils.get(
|
||||
custom_channel = ds_utils.get(
|
||||
ctx.guild.channels, id=holo_user_ctx.customchannel
|
||||
)
|
||||
if custom_channel is None:
|
||||
|
Loading…
Reference in New Issue
Block a user