Skip to content

Commit 6f97dc3

Browse files
author
Lukas Schmelting
committed
Added changelog entry, disable protected-access linting to _path
1 parent 15b3e95 commit 6f97dc3

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -193,6 +193,8 @@ This project adheres to [Semantic Versioning](https://semver.org/).
193193
- [#1778](https://github.com/plotly/dash/pull/1778) DataTable: Fix React warnings stating
194194
that each child in a list should have a unique "key" prop
195195

196+
- [#1895](https://github.com/plotly/dash/pull/1895) Support debug=True if native namespace-packages are present
197+
196198
## [2.0.0] - 2021-08-03
197199

198200
## Dash and Dash Renderer

dash/dash.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1731,7 +1731,7 @@ 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])
1734+
else os.path.dirname(package._path[0]) # pylint: disable=protected-access
17351735
if hasattr(package, "_path")
17361736
else package.filename
17371737
for package in packages

0 commit comments

Comments
 (0)