Callback SyntaxError File "<stdin>"

This is directly from the plotly dash site.
Part 2. Basic Callbacks | Dash for Python Documentation | Plotly

And I am receiving this message:

@app.callback(
Output(‘graph-with-slider’, ‘figure’),
Input(‘year-slider’, ‘value’))

File stdin>, line 4
^
SyntaxError: invalid syntax

  • I am using vscode with everything installed. What is going on?

Chris

here is the code:

import dash
from dash import dcc
from dash import html
from dash.dependencies import Input, Output
import plotly.express as px
import pandas as pd

df = pd.read_csv(‘https://raw.githubusercontent.com/plotly/datasets/master/gapminderDataFiveYear.csv’)

app = dash.Dash(name)

app.layout = html.Div([

dcc.Graph(id='graph-with-slider'),

dcc.Slider(

    id='year-slider',
    min=df['year'].min(),
    max=df['year'].max(),
    value=df['year'].min(),
    marks={str(year): str(year) for year in df['year'].unique()},
    step=None

)

])

@app.callback(

Output('graph-with-slider', 'figure'),
Input('year-slider', 'value'))

def update_figure(selected_year):

filtered_df = df[df.year == selected_year]
fig = px.scatter(filtered_df, x="gdpPercap", y="lifeExp",

                 size="pop", color="continent", hover_name="country",

                 log_x=True, size_max=55)

fig.update_layout(transition_duration=500)

return fig

if name == ‘main’:

app.run_server(debug=True, use_reloader =False)