async def callback(self, inter: disnake.ModalInteraction):
name = inter.text_values['name']
age = inter.text_values['age']
about = inter.text_values['about']
c.execute(f"INSERT INTO user VALUES ({inter.author.id}, {name}, {age}, {about})")
conn.commit()
sqlite3.OperationalError: no such column: dfgeb