
Help me in python sdk idk why this error occured but it was not before 2 days it occured today even if the data is not None it says none and am also providing the same data type as in attribute.
Codes.
@commands.command(name="addofficial", aliases=['addstaff', 'aoff'], help="Adds an user as official to DB.")
@commands.is_owner()
async def addofficial(self, ctx: commands.Context, user: discord.Member):
if not user:
await ctx.send("Please mention/send an userId")
else:
await addOfficialToDB(id=str(user.id))
await ctx.send("Done!")
addOfficialToDB func,
async def addOfficialToDB(id: str):
try:
databases.create_document(
database_id=os.environ.get("DB_ID"),
collection_id=os.environ.get("DB_OFFC_COLLECTION_ID"),
document_id=ID.unique(),
data={
"id": str(id)
}
)
await WebLog(f"Added official {id} to database.")
except AppwriteException as e:
print(e.message)
Error:
unsupported operand type(s) for +: 'NoneType' and 'str'

Maybe the environment variables aren't set

Btw, I suggest you don't wrap stuff with str
because you're forcing things to be strings which can mask problems

let me try this if it can fix

huh everything is fine

in .env
Recommended threads
- Getting Cors Error after 2 weeks
TLDR: I've deployed a appwrite function and adding appropriate headers while sending the request back and it was working well and good previous week but today s...
- rate limit for the current endpoint exce...
My site is working fine but sometimes it goes into error like failing to create jwt and rate limit! It breaks the authentication completely! Any quick solution?...
- Web Console Columns Don't Save.
Minor issue - column flags in the console don't save. I tick some on or off, refresh the page or click on another page in the console, and it reverts back to ...
