Skip to content

Commit

Permalink
blacken
Browse files Browse the repository at this point in the history
  • Loading branch information
jonmmease committed Apr 16, 2021
1 parent aa2e10d commit 7602203
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions dash_labs/templates/ddk.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,15 @@ def import_ddk():
try:
import dash_design_kit as ddk
except ImportError:
raise ImportError("""
raise ImportError(
"""
Module not found: dash_design_kit.
To use templates powered by Dash Enterprise Design Kit, please ensure that you
have dash_design_kit installed in your app's Python environment. You can refer
to your organization's Dash Enterprise documentation for instructions on how
to do this. If your organization is not yet a Dash Enterprise customer,
please visit https://plotly.com/get-demo/ to find out more!""")
please visit https://plotly.com/get-demo/ to find out more!"""
)

return ddk

Expand Down

0 comments on commit 7602203

Please # to comment.