Bokeh Duplicate Edit Error

Hello, I am trying to plot multiple charts using bokeh gridplot layout. The charts can be viewed from Notebook but does not render in browser.
I get “Bokeh Duplicate Edit Error” in Browser

from bokeh.plotting import figure, output_file, output_notebook,show

from bokeh.charts import Line

from bokeh.layouts import gridplot

import pandas as pd

df= pd.read_csv(“C:/tps.csv”)

df1= pd.read_csv(“C:/abc.csv”)

p1=Line(df,title=“Test1”)

p2=Line(df1,title=“Test2”)

grid = gridplot([[p1, p2]], toolbar_location=None)

show the results

output_file(‘Test.html’)

output_notebook()

show(grid)

Any advice will be very helpful.