import discord
from discord import Game
from discord.ext import commands
import json
import os
from asyncio import sleep
client = discord.Client()
@client.event
async def on_ready():
while True:
await bot.change_presence(status=discord.Status.online, activity=discord.Watching("Текст игры"))
в строке while True:
выдает ошибку
File "main.py", line 11
while True: ^
IndentationError: expected an indented block
Эта ошибка говорит о неправильном отступе.
Должно быть примерно так:
@client.event
async def on_ready():
while True:
await bot.change_presence(...)
Скорее всего перед while нет отступа, возможно, перед await bot.change_presence.