1
Fork 0
mirror of https://github.com/allthingslinux/tux.git synced 2024-10-03 00:53:12 +00:00

style fixes by ruff

This commit is contained in:
electron271 2024-03-21 21:59:00 +00:00 committed by github-actions[bot]
parent 52640d458a
commit 31894a37b5

View file

@ -58,15 +58,15 @@ class OnVoiceStateUpdate(commands.Cog):
# if the category is not found, return # if the category is not found, return
if category is None: if category is None:
return return
# paranoia check # paranoia check
if before.channel.category_id != category.id: if before.channel.category_id != category.id:
return return
# if these are the same, the user is just deafening or muting # if these are the same, the user is just deafening or muting
if before.channel == after.channel: if before.channel == after.channel:
return return
# if the id of the channel is the same as the temporary channel, return # if the id of the channel is the same as the temporary channel, return
# just incase they decide to name the channel starting with [TEMP] # just incase they decide to name the channel starting with [TEMP]
if before.channel.id == int(C.TEMPVC_CHANNEL or "0"): if before.channel.id == int(C.TEMPVC_CHANNEL or "0"):
@ -75,7 +75,7 @@ class OnVoiceStateUpdate(commands.Cog):
# TODO: Replace this with a database so the user can change the name of the channel # TODO: Replace this with a database so the user can change the name of the channel
if not before.channel.name.startswith("[TEMP]"): if not before.channel.name.startswith("[TEMP]"):
return return
# get the number of members in the channel # get the number of members in the channel
if len(before.channel.members) == 0: if len(before.channel.members) == 0:
await before.channel.delete() await before.channel.delete()