File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -1731,14 +1731,18 @@ def enable_dev_tools(
1731
1731
if isinstance (package , ModuleSpec )
1732
1732
else os .path .dirname (package .path )
1733
1733
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
+ )
1735
1737
if hasattr (package , "_path" )
1736
1738
else package .filename
1737
1739
for package in packages
1738
1740
]
1739
1741
1740
1742
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
+ ):
1742
1746
component_packages_dist [i : i + 1 ] = [
1743
1747
os .path .join (os .path .dirname (package .path ), x )
1744
1748
for x in ["dcc" , "html" , "dash_table" ]
You can’t perform that action at this time.
0 commit comments