Code Snippet:
async def select_callback(
self,
select: discord.ui.Select,
interaction: discord.Interaction,
) -> None: # the function called when the user is done selecting options
value = select.values[0]
if value == "current_value":
# do nothing
await interaction.response.defer()
return
PD011 comes up on the line value = select.values[0], but pd doesn't even exist in this module.