Error handling - PATCH - DOC (revision 1) using Bokeh with Google Maps

Hello,
I am trying to draw a base map of Wichita in Kansas, US using google maps and bokeh. I keep getting the error

error handling message Message - PATCH - DOC (revision 1)

TypeError: init() missing 2 required positional arguments: ‘google_api_key’ and ‘map_options’.

My code does produce the desired google map. However, the point where I am getting stuck is while trying to integrate my bokeh server app into flask. The integration does not happen because of the above error. I have researched this error quite a lot and found cases relevant to the PATCH - DOC (revision 1) error, but did not find a case that was similar to mine (including the google maps API). Please let me know if I’m missing something.

Here is my code,

from bokeh.plotting import figure, output_file, show
from bokeh.models import *
from bokeh.plotting import gmap
from bokeh.io import output_notebook, curdoc

from bokeh.palettes import brewer, Spectral6

from bokeh.transform import factor_cmap

from bokeh.palettes import Spectral5

from bokeh.models.widgets import Panel, Tabs
from bokeh.events import ButtonClick
from bokeh.models import Button
from bokeh.layouts import column, row
from bokeh.events import ButtonClick

import pandas as pd
import numpy as np
import pyodbc

output_file(“gmap.html”)

parameters

server = ‘x.x.x.x\ABC’

db = ‘SomeDB’

Create the connection

conn = pyodbc.connect(‘DRIVER={SQL Server};SERVER=’ + server + ‘;DATABASE=’ + db + ‘;Trusted_Connection=yes’)

map_options = GMapOptions(lat=37.686293, lng=-97.3614409, map_type=“roadmap”, zoom=13)
p = gmap(“My Google Maps API Key”, map_options, title=“Resolutions Clients”, plot_width=1000, plot_height=600)

curdoc().add_root(column(p))

``

Thanks in advance!