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

improve dash import test #854

Merged
merged 2 commits into from
Dec 10, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).

## [UNRELEASED]
### Fixed
- [#854](https://github.com/plotly/dash-table/pull/854) - part of fixing dash import bug https://github.com/plotly/dash/issues/1143

## [4.11.1] - 2020-12-07
### Fixed
- [#844](https://github.com/plotly/dash-table/pull/844) Fix a bug where the table is using classes that are styled by Bootstrap
Expand Down
2 changes: 1 addition & 1 deletion dash_table_base/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
from ._imports_ import * # noqa: F401, F403
from ._imports_ import __all__

if not hasattr(_dash, "development"):
if not hasattr(_dash, '__plotly_dash') and not hasattr(_dash, 'development'):
print(
"Dash was not successfully imported. "
"Make sure you don't have a file "
Expand Down