```
@client.command()
async def bulling(ctx, text, sp, kol):
while int(kol) !=0:
shabli = open("shabloni.txt")
for line in shabli:
await ctx.send(f"{text} " + random.choice(line))
await asyncio.sleep(int(sp))
kol = int(kol)-1
```
Выводит только одну букву из текста, как исправить?