Skip to content

Commit bac54a8

Browse files
committed
lint
1 parent 36d6cd6 commit bac54a8

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

components/dash-core-components/tests/integration/dropdown/test_dropdown_debounce.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
from selenium.webdriver.common.action_chains import ActionChains
66
import time
77

8+
89
def test_ddde001_dropdown_debounce(dash_duo):
910
app = Dash(__name__)
1011
app.layout = html.Div(
@@ -21,7 +22,9 @@ def test_ddde001_dropdown_debounce(dash_duo):
2122
closeOnSelect=False,
2223
debounce=True,
2324
),
24-
html.Div(id="dropdown-value-out", style={"height": "10px", "width": "10px"}),
25+
html.Div(
26+
id="dropdown-value-out", style={"height": "10px", "width": "10px"}
27+
),
2528
]
2629
)
2730

0 commit comments

Comments
 (0)