Skip to content

Commit f8900f3

Browse files
authored
Format code (#998)
1 parent 42e0010 commit f8900f3

File tree

14 files changed

+14
-0
lines changed

14 files changed

+14
-0
lines changed

dash_bootstrap_components/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""Bootstrap themed components for use in Plotly Dash"""
2+
23
import os
34

45
from dash_bootstrap_components import _components, icons, themes

examples/advanced-component-usage/graphs_in_tabs.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
dcc.Store can be used to cache the results of an expensive graph generation
55
process so that switching tabs is fast.
66
"""
7+
78
import time
89

910
import dash

examples/advanced-component-usage/navbars.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
66
Requires dash-bootstrap-components 0.3.0 or later
77
"""
8+
89
import dash
910
import dash_bootstrap_components as dbc
1011
from dash import Input, Output, State, html

examples/advanced-component-usage/toast.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
can add or remove messages from the message store in response to all kinds of
1515
different events.
1616
"""
17+
1718
import json
1819
from random import randint
1920
from uuid import uuid4

examples/gallery/faithful/app.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
density approximation curve, which is not easily adjusted when using
88
plotly.figure_factory.create_distplot, so it doesn't feature in this example.
99
"""
10+
1011
import dash
1112
import dash_bootstrap_components as dbc
1213
import pandas as pd

examples/gallery/iris-kmeans/app.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
44
https://shiny.rstudio.com/gallery/kmeans-example.html
55
"""
6+
67
import dash
78
import dash_bootstrap_components as dbc
89
import pandas as pd

examples/gallery/telephones-by-region/app.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
44
https://shiny.rstudio.com/gallery/telephones-by-region.html
55
"""
6+
67
import dash
78
import dash_bootstrap_components as dbc
89
import pandas as pd

examples/gallery/wordcloud/app.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
44
https://shiny.rstudio.com/gallery/word-cloud.html
55
"""
6+
67
import base64
78
import io
89
from functools import lru_cache

examples/templates/multi-page-apps/collapsible-sidebar-with-icons/app.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
For more details on building multi-page Dash applications, check out the Dash
1313
documentation: https://dash.plot.ly/urls
1414
"""
15+
1516
import dash
1617
import dash_bootstrap_components as dbc
1718
from dash import Input, Output, dcc, html

examples/templates/multi-page-apps/navbar.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
For more details on building multi-page Dash applications, check out the Dash
1010
documentation: https://dash.plot.ly/urls
1111
"""
12+
1213
import dash
1314
import dash_bootstrap_components as dbc
1415
from dash import Input, Output, dcc, html

0 commit comments

Comments
 (0)