Animation_frame not working when geo_json used in px.chloropleth

fig = px.choropleth(df_india,
geojson=merged_json,
color=“Confirmed”,
locations=“State/UnionTerritory”,
featureidkey=“properties.st_nm”,
color_continuous_scale = ["#ffffb2","#fecc5c","#fd8d3c","#f03b20","#bd0026"],
projection=“orthographic”,
animation_frame=“Date”
)
fig.update_geos(fitbounds=“locations”, visible=False)
fig.update_layout(margin={“r”:0,“t”:0,“l”:0,“b”:0})
fig.show()

Static map working fine.(when animation_frame not used) but when animation_frame is used No output and program is struck executing that cell.