Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit eb727be

Browse files
author
Shammamah Hossain
committed
Fix install instructions (change from dcc -> daq).
1 parent f8d890c commit eb727be

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

tutorial/daq.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,10 @@
2525
'''.replace(' ', '').format(daq.__version__)
2626
)
2727

28-
daq_install_instructions = dcc.SyntaxHighlighter('''>>> import dash_core_components as dcc
29-
>>> print(dcc.__version__)
30-
{}'''.replace(' ', '').format(dcc.__version__),
31-
customStyle=styles.code_container),
28+
daq_install_instructions = dcc.SyntaxHighlighter('''>>> import dash_daq as daq
29+
>>> print(daq.__version__)
30+
{}'''.replace(' ', '').format(daq.__version__),
31+
customStyle=styles.code_container)
3232

3333

3434
dash_daq_components = {
@@ -152,7 +152,7 @@
152152
dash_daq_components
153153
)
154154

155-
layout_children.insert(0, daq_install_instructions)
155+
layout_children.insert(1, daq_install_instructions)
156156

157157
dtp = load_example(
158158
'tutorial/examples/daq_components/darkthemeprovider_daq.py'

0 commit comments

Comments
 (0)