Skip to content
This repository was archived by the owner on Jun 4, 2024. It is now read-only.

Commit 3cefbc4

Browse files
authored
Merge pull request #854 from plotly/import-test
improve dash import test
2 parents b40ae7a + 839afb0 commit 3cefbc4

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22
All notable changes to this project will be documented in this file.
33
This project adheres to [Semantic Versioning](http://semver.org/).
44

5+
## [UNRELEASED]
6+
### Fixed
7+
- [#854](https://github.com/plotly/dash-table/pull/854) - part of fixing dash import bug https://github.com/plotly/dash/issues/1143
8+
59
## [4.11.1] - 2020-12-07
610
### Fixed
711
- [#844](https://github.com/plotly/dash-table/pull/844) Fix a bug where the table is using classes that are styled by Bootstrap

dash_table_base/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
from ._imports_ import * # noqa: F401, F403
1010
from ._imports_ import __all__
1111

12-
if not hasattr(_dash, "development"):
12+
if not hasattr(_dash, '__plotly_dash') and not hasattr(_dash, 'development'):
1313
print(
1414
"Dash was not successfully imported. "
1515
"Make sure you don't have a file "

0 commit comments

Comments
 (0)