From 7602203f9eb396b5bdd771d333a482a09498e083 Mon Sep 17 00:00:00 2001 From: Jon Mease Date: Fri, 16 Apr 2021 06:51:36 -0400 Subject: [PATCH] blacken --- dash_labs/templates/ddk.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/dash_labs/templates/ddk.py b/dash_labs/templates/ddk.py index 36eb746..875fad3 100644 --- a/dash_labs/templates/ddk.py +++ b/dash_labs/templates/ddk.py @@ -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