Skip to content

Commit 4a84603

Browse files
authored
Merge pull request #3078 from plotly/deprecation-removals
Deprecation removals
2 parents a32d03a + e45095f commit 4a84603

File tree

69 files changed

+297
-903
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

69 files changed

+297
-903
lines changed

Diff for: components/dash-core-components/src/components/LogoutButton.react.js

-120
This file was deleted.

Diff for: components/dash-core-components/src/components/css/logout.css

-20
This file was deleted.

Diff for: components/dash-core-components/src/index.js

-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ import Interval from './components/Interval.react';
1414
import Link from './components/Link.react';
1515
import Loading from './components/Loading.react';
1616
import Location from './components/Location.react';
17-
import LogoutButton from './components/LogoutButton.react';
1817
import Markdown from './components/Markdown.react';
1918
import RadioItems from './components/RadioItems.react';
2019
import RangeSlider from './components/RangeSlider.react';
@@ -45,7 +44,6 @@ export {
4544
Link,
4645
Loading,
4746
Location,
48-
LogoutButton,
4947
Markdown,
5048
RadioItems,
5149
RangeSlider,

Diff for: components/dash-core-components/tests/integration/location/test_location_logout.py

-30
This file was deleted.

Diff for: components/dash-table/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ app.layout = dash_table.DataTable(
2525
)
2626

2727
if __name__ == '__main__':
28-
app.run_server(debug=True)
28+
app.run(debug=True)
2929
```
3030

3131
![Interactive Dash DataTable](https://user-images.githubusercontent.com/1280389/47935912-67187080-deb2-11e8-8936-34b0c99b518f.png)

Diff for: dash/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
get_relative_path,
2727
strip_relative_path,
2828
)
29-
from .long_callback import ( # noqa: F401,E402
29+
from .background_callback import ( # noqa: F401,E402
3030
CeleryManager,
3131
DiskcacheManager,
3232
)

0 commit comments

Comments
 (0)