@client.command( pass_context=True )
async def test(ctx):
#head
author = ctx.message.author
#body
with open( "premium.txt", 'r' ) as file:
for line in file:
await ctx.send(line)#проверял что line содержит строку.
if author.guild.id == line:#тут сама проблема
await ctx.send("Done")
else:
await ctx.send("Error")#всегда error
int
. Вы его сравниваете с типом str
.