How can i update x usings args in the button . Since this doesn.t seem to work

import plotly.graph_objects as go
from plotly.subplots import make_subplots

fig = make_subplots(
rows=1, cols=2)

fig.add_trace(
go.Bar(x=[1, 2, 3, 4],
y=[7, 4, 5, 6],
name=“bar”,
visible=True
), 1,1)

button1 = dict(method=‘update’,
args=[{“x” : [10,12,11,13214] }],
label=“cell 0” )
button2 = dict(method=‘update’,
args=[{“x” : [100,100,211,1212] }],
label="cell " )

fig.update_layout(width=800, height=400,
updatemenus =[dict(type=‘buttons’,
buttons=[button1,button2],
x=1.05,
xanchor=“left”,
y=1,
yanchor=“top”)])