async def register(self):
reg = await basa.register.main.register(user)
TypeError: register() принимает 1 позиционный аргумент, но было задано 2
какую библиотеку python 3 использовать?
Писать в БД бот должен так 1 точка POINT, 2-точки LINESTRING, 3 и более MULTILINESTRING
User.objects.filter(id=id, license__gte=start) # Юзер это стандартная модель из приложения авторизации. Если вы подразумеваете какого-то другого юзера, то и модель называться будет по-другому.
import discord
from discord.ext import commands
from discord.ext.commands import Cog
class Cog(commands.Cog):
def __init__(self, bot):
self.bot = bot
@commands.command(brief='')
async def cogcommand(self, ctx):
await ctx.send('использование когов')
def setup(bot):
bot.add_cog(Cog(bot))