# create an empty list to store user IDs
user_ids = []
async def bid(ctx):
# check if the user's ID is in the list of user IDs
if ctx.author.id in user_ids:
# if the user has already placed a bid, send a message to let them know
embed1 = discord.Embed(description= f'{ctx.author}, you have already placed a bid', title='bid not placed')
await ctx.send(embed=embed1)
else:
# if the user has not placed a bid, add their ID to the list of user IDs and send a message to confirm their bid
user_ids.append(ctx.author.id)
embed1 = discord.Embed(description= f'Bid has been placed by {ctx.author}', title='bid placed')
await ctx.send(embed=embed1)