Error loading dependencies

Hello.
Every time I see this message, what are the main reasons of this?
For example I have such app. I have input for email and password, save on file by session_id(date time) and then can’t show layout of app. In another variant, I try to save in Store(session) and in Chrome all works, but not in Safari. What can happened?

app.layout = html.Div([
dcc.Interval(id=‘interval’, interval=10, n_intervals=0),
# header,
html.Div([
html.H2(‘Binomo Dashboard’,style={‘color’:‘white’,‘vertical-align’: ‘middle’,‘float’:‘left’}),
#html.Div(html.A(html.H4(‘Авторизация’, style={‘color’: ‘white’}),href=’/auth’),style={‘float’:‘right’,‘position’:‘relative’,‘top’:‘40%’,‘right’:‘5px’})
html.Div([
# html.H3(‘Введите логин’, style={‘font-family’: ‘Product Sans’}),
html.Button(‘Авторизация’,
id=‘button-auth’,
style={‘display’: ‘block’,
‘font-size’: ‘1.3em’,
‘font-family’: ‘Product Sans’,
‘color’: “rgba(0, 0, 0, 0.95)”,
‘margin’: ‘auto’,
‘margin-top’: ‘50px’}
),
dcc.Input(
id=‘login’,
type=‘email’,
value=’’,placeholder=‘Введите email’),
dcc.Input(
id=‘password’,
type=‘password’,
value=’’,placeholder=‘Введите пароль’)
],className=‘middle’),

],className='middle'),




navbar,
html.Div(id='tabs-content'),

dcc.Location(id='url', refresh=False),
dcc.Store(id='session', storage_type='session'),
dcc.Store(id='key'),
html.Div(id='content'),
html.Div(id='content_graph'),
html.Div(id='dropdown_cell'),
html.Div(id='content_cell'),
html.Div(id='content_table'),
html.Div(id='signal',style={'display': 'none'}),
html.Div(id='datetime',children=str(datetime.now()),style={'display': 'none'}),

html.Div(dash_table.DataTable(
    id='hidden_table',
    columns=[{
        'name': 'hidden_column',
        'id': 'hidden_column',
        'deletable': True,
        'editable_name': True
    }],
    data=[
        {'hidden_column': 1}

    ],
), style={'display': 'none'}),

])

@app.callback(Output(‘signal’, ‘children’),
[Input(‘button-auth’, ‘n_clicks’),Input(‘datetime’,‘children’)],
[State(‘login’, ‘value’),
State(‘password’, ‘value’),
# State(‘session’,‘data’)
],
)
def auth(clicks,date, login, password):
if clicks is None:
raise PreventUpdate
# global global_dict

global_dict = {}
global_dict[date] = {'login':login,'password':password}
print(global_dict,'auth')
with open('{}.json'.format(date), 'w') as outfile:#json.dumps(your_data, ensure_ascii=False)
    json.dump(global_dict, outfile,ensure_ascii=False)
return ""

@app.callback(Output(‘tabs-content’, ‘children’),
[Input(‘tabs’, ‘value’), Input(‘url’, ‘pathname’),Input(‘datetime’,‘children’)]
# ,[State(‘login’, ‘value’),
# State(‘password’, ‘value’)]
)
def render_content(tab, url, date):
if tab == ‘clear’ and url != ‘/auth’:
try:
print(tab, url, date,‘tab, url, date’)
if not os.path.exists(’{}.json’.format(date)):
login =’’
password =’’
else:
with open(’{}.json’.format(date)) as f:
data = json.load(f)
data = data[date]
login = data[‘login’]
password = data[‘password’]
print(‘login,pass’,login,password)
except Exception as e:
print(‘exception’,e)
return ‘’

    if url == '/app_finance_plan' and check_auth(login, password, '/app_finance_plan'):
        print('app')
        return app_finance_plan.layout