A frustrating and persistent error keeps popping up on my Jupyter Notebook:
The save operation succeeded, but the notebook does not appear to be valid. The validation error was:
Notebook validation failed: Additional properties are not allowed ('id' was unexpected):
{
"metadata": {
"trusted": true
},
"id": "breathing-seventh",
"cell_type": "code",
"source": "import pandas as pd\nimport numpy as np\nimport re\nimport datetime\n\nimport json\nimport os\nimport copy\n\nimport seaborn as sns\nimport matplotlib.pyplot as plt",
"execution_count": 1,
"outputs": []
}
It points to my imports column which contains:
import pandas as pd
import numpy as np
import re
import datetime
import json
import os
import copy
import seaborn as sns
import matplotlib.pyplot as plt
I'm also using Plotly in the notebook and I'm unsure if the error was caused by Plotly. I looked up the error and used the fixes mentioned here but the error still persists.
Please Advise.