cuz i need help with my json code so bsiacaly i need to fix this eror
{
"questions": [
]
} //!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
{
"questions": [
{
"question": "hey",
"answer": "hey"
}
]
}
``` in python i use this code
```py
format = {"questions": [{"question": word, "answer": user_input}]}
def add_knowledge(format: dict):
try:
with open("responses.json", "a") as file:
json.dump(format, file, indent=2)
except Exception as e:
printf(f"Couldn't write answer due to {e}")
it makes a whole new questions thing