Skip to content

Commit eb85b76

Browse files
committed
black
1 parent 4662a09 commit eb85b76

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

dash/dash.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1731,14 +1731,18 @@ def enable_dev_tools(
17311731
if isinstance(package, ModuleSpec)
17321732
else os.path.dirname(package.path)
17331733
if hasattr(package, "path")
1734-
else os.path.dirname(package._path[0]) # pylint: disable=protected-access
1734+
else os.path.dirname(
1735+
package._path[0] # pylint: disable=protected-access
1736+
)
17351737
if hasattr(package, "_path")
17361738
else package.filename
17371739
for package in packages
17381740
]
17391741

17401742
for i, package in enumerate(packages):
1741-
if hasattr(package, "path") and "dash/dash" in os.path.dirname(package.path):
1743+
if hasattr(package, "path") and "dash/dash" in os.path.dirname(
1744+
package.path
1745+
):
17421746
component_packages_dist[i : i + 1] = [
17431747
os.path.join(os.path.dirname(package.path), x)
17441748
for x in ["dcc", "html", "dash_table"]

0 commit comments

Comments
 (0)