File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -193,6 +193,8 @@ This project adheres to [Semantic Versioning](https://semver.org/).
193
193
- [#1778](https://github.com/plotly/dash/pull/1778) DataTable: Fix React warnings stating
194
194
that each child in a list should have a unique "key" prop
195
195
196
+ - [#1895](https://github.com/plotly/dash/pull/1895) Support debug=True if native namespace-packages are present
197
+
196
198
## [2.0.0] - 2021-08-03
197
199
198
200
## Dash and Dash Renderer
Original file line number Diff line number Diff line change @@ -1731,7 +1731,7 @@ 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 ])
1734
+ else os .path .dirname (package ._path [0 ]) # pylint: disable=protected-access
1735
1735
if hasattr (package , "_path" )
1736
1736
else package .filename
1737
1737
for package in packages
You can’t perform that action at this time.
0 commit comments